Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.progeeks.meta.MetaClassRegistry

Uses of MetaClassRegistry in org.progeeks.meta
 

Fields in org.progeeks.meta declared as MetaClassRegistry
private static MetaClassRegistry MetaClassRegistry.rootRegistry
          A default "root" class registry to which all class registry chains eventually defer.
private  MetaClassRegistry MetaClassRegistry.parentRegistry
          The parent registry to this class registry.
private  MetaClassRegistry MetaClass.classRegistry
           
 

Methods in org.progeeks.meta that return MetaClassRegistry
static MetaClassRegistry MetaClassRegistry.getRootRegistry()
          Returns the singleton instance of the root class registry.
 MetaClassRegistry MetaClassRegistry.getParentRegistry()
          Returns the parent registry to this meta-class registry or null if there is no parent registry.
 MetaClassRegistry MetaClass.getClassRegistry()
          Returns the class registry to which this meta-class belongs.
 

Methods in org.progeeks.meta with parameters of type MetaClassRegistry
 MetaClass MetaKit.getMetaClassForObject(java.lang.Object object, MetaClassRegistry classRegistry)
          Returns the appropriate meta-class for the specified object.
 PropertyType DeferredPropertyType.resolveType(MetaClassRegistry registry)
          Returns the replacement property type as can be resolved from the specified class registry.
 

Constructors in org.progeeks.meta with parameters of type MetaClassRegistry
MetaClassRegistry(MetaClassRegistry parentRegistry)
          Creates a new meta-class registry the delegates to the specified parent registry after looking for a class locally.
MetaClassRegistry(MetaClassRegistry parentRegistry, int delegationPolicy)
          Creates a new meta-class registry the delegates to the specified parent registry as specified by the delegation policy parameter.
MetaClass(MetaClassRegistry classRegistry, java.lang.String name, java.util.Collection propertyInfo)
          Creates the meta-class using the specified parameters.
MetaClass(MetaClassRegistry classRegistry, java.lang.String name, java.util.Collection propertyInfo, java.util.Collection superclasses)
          Creates the meta-class using the specified parameters.
MetaClass(MetaClassRegistry classRegistry, java.lang.String name, java.util.Collection propertyInfo, MetaClass superclass)
          Creates the meta-class using the specified parameters.