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

Quick Search    Search Deep

Uses of Interface
org.progeeks.meta.PropertyType

Uses of PropertyType in org.progeeks.meta
 

Classes in org.progeeks.meta that implement PropertyType
 class ClassPropertyType
          Property type implementation that represents a Java class directly.
 class ContainerPropertyType
          This represents a property type that is a container for objects of another type.
 class DeferredPropertyType
          Represents an unresolved property type of a meta-object.
 class ListPropertyType
          Represents an ordered list of values such that they can be referenced by index number.
 class MetaClassPropertyType
          Property type implementation that represents a meta class object.
 

Fields in org.progeeks.meta declared as PropertyType
private  PropertyType PropertyInfo.type
           
private  PropertyType DeferredPropertyType.alternateType
           
private  PropertyType ContainerPropertyType.valueType
          The type of values contained in the list.
 

Methods in org.progeeks.meta that return PropertyType
 PropertyType PropertyInfo.getPropertyType()
          Returns the type of this property.
protected  PropertyType MetaClass.resolveType(PropertyType type)
          Called internally to resolve a property type if it is required.
 PropertyType MetaClass.getPropertyType(java.lang.String name)
          Returns the type for the specified property.
 PropertyType DeferredPropertyType.resolveType(MetaClassRegistry registry)
          Returns the replacement property type as can be resolved from the specified class registry.
 PropertyType ContainerPropertyType.getValueType()
          Returns the type of values contained within lists of this type.
 

Methods in org.progeeks.meta with parameters of type PropertyType
 void TypeRegistry.put(PropertyType type, java.lang.Object value)
          Maps the value to the specified type.
 java.lang.Object TypeRegistry.get(PropertyType type, boolean searchDefaults)
          Returns the object associated with the specified type.
 java.lang.Object TypeRegistry.get(PropertyType type)
           
 java.lang.Object TypeRegistry.getDefault(PropertyType type)
           
 PropertyInfo PropertyInfo.replacePropertyType(PropertyType type)
          Clones this property info, replacing the property type with the type specified.
protected  PropertyType MetaClass.resolveType(PropertyType type)
          Called internally to resolve a property type if it is required.
 ContainerPropertyType ListPropertyType.replaceContainedType(PropertyType valueType)
          Clones this container property type and replaces the value type with the type specified.
 ContainerPropertyType ContainerPropertyType.replaceContainedType(PropertyType valueType)
          Clones this container property type and replaces the value type with the type specified.
 PropertyInfo ContainerPropertyInfo.replacePropertyType(PropertyType type)
          Clones this property info, replacing the property type with the type specified.
protected  java.lang.Object AbstractMetaObject.wrapPropertyValue(java.lang.String name, PropertyType type, java.lang.Object value)
          Wraps the object as appropriate to return to a caller or returns the original value if no wrapping is needed.
 

Constructors in org.progeeks.meta with parameters of type PropertyType
PropertyInfo(java.lang.String propertyName, java.lang.String name, java.lang.String shortName, java.lang.String description, PropertyType type, int alignment, boolean writable, boolean readable)
           
PropertyInfo(java.lang.String propertyName, java.lang.String name, java.lang.String shortName, java.lang.String description, PropertyType type, int alignment, boolean writable)
           
PropertyInfo(java.lang.String propertyName, java.lang.String name, PropertyType type)
           
PropertyInfo(PropertyInfo info, PropertyType type)
           
ListPropertyType(PropertyType valueType)
          Creates a ListPropertyType representing an order list of values of the specified valueType.
DeferredPropertyType(java.lang.String metaClassName, PropertyType alternateType)
          Creates a deferred type the will resolve to the specified meta-class when resolution is requested.
ContainerPropertyType(PropertyType valueType)
          Creates a ContainerPropertyType representing a container with values of the specified valueType.
ContainerPropertyType(java.lang.Class baseClass, PropertyType valueType)
          Creates a ContainerPropertyType representing a container with values of the specified valueType.
ContainerPropertyInfo(java.lang.String propertyName, java.lang.String name, java.lang.String shortName, java.lang.String description, PropertyType type, int alignment, boolean writable, boolean readable, boolean resizable, boolean mutable)
           
ContainerPropertyInfo(java.lang.String propertyName, java.lang.String name, java.lang.String shortName, java.lang.String description, PropertyType type, int alignment, boolean writable, boolean resizable, boolean mutable)
           
ContainerPropertyInfo(java.lang.String propertyName, java.lang.String name, PropertyType type, boolean writable, boolean resizable)
           
ContainerPropertyInfo(java.lang.String propertyName, java.lang.String name, PropertyType type)
           
ContainerPropertyInfo(ContainerPropertyInfo info, PropertyType type)