public class ReflectorLoader
extends ClassLoader
Reflector creation helper. This class is used to define the Reflector classes. For each ClassLoader such a loader will be created by MetaClass. Special about this loader is, that it knows the classes form the Groovy Runtime. The Reflector class is resolved in different ways: During the definition of a class Reflector will resolve to the Reflector class of the runtime, even if there is another Reflector class in the parent loader. After the new class is defined Reflector will resolve like other Groovy classes. This loader is able to resolve all Groovy classes even if the parent does not know them, but the parent serves first (Reflector during a class definition is different).
| Constructor and description |
|---|
ReflectorLoader(ClassLoader parent)Creates a new ReflectorLoader with the specified parent class loader. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Class |
defineClass(String name, byte[] bytecode, ProtectionDomain domain)Helper method to define Reflector classes. |
|
protected Class |
findClass(String name)Tries to find a Groovy class. |
|
public Class |
getLoadedClass(String name)Retrieves a previously defined Reflector class by name from the cache. |
|
protected Class |
loadClass(String name, boolean resolve)Loads a class per name. |
| Methods inherited from class | Name |
|---|---|
class ClassLoader |
clearAssertionStatus, equals, getClass, getDefinedPackage, getDefinedPackages, getName, getParent, getPlatformClassLoader, getResource, getResourceAsStream, getResources, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, getUnnamedModule, hashCode, isRegisteredAsParallelCapable, loadClass, notify, notifyAll, resources, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus, toString, wait, wait, wait |
Creates a new ReflectorLoader with the specified parent class loader. This loader is responsible for defining Reflector classes that can resolve the Reflector class from the Groovy runtime correctly.
parent - the parent class loader (should never be null)Helper method to define Reflector classes. This method sets the inDefine flag to true during class definition to ensure Reflector is resolved correctly, then resolves the newly defined class and stores it in the loadedClasses cache.
name - the fully qualified name of the Reflector classbytecode - the bytecode of the Reflector classdomain - the protection domain for the classTries to find a Groovy class. Uses the delegation loader to load classes when available.
name - the fully qualified name of the class to findRetrieves a previously defined Reflector class by name from the cache.
name - the fully qualified name of the Reflector classLoads a class per name. Unlike a normal loadClass this version behaves different during a class definition. In that case it checks if the class we want to load is Reflector and returns class if the check is successful. If it is not during a class definition it just calls the super class version of loadClass.
name - of the class to loadresolve - is true if the class should be resolvedCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.