Uses of Class
org.objectweb.jorm.genclass.api.FieldDesc

Packages that use FieldDesc
org.objectweb.jorm.genclass.api   
org.objectweb.jorm.genclass.lib   
org.objectweb.jorm.mapper.rdb.genclass   
 

Uses of FieldDesc in org.objectweb.jorm.genclass.api
 

Methods in org.objectweb.jorm.genclass.api with parameters of type FieldDesc
 void GenClassProp.setIdentifierDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the identifier structure of a generic class instance.
 void GenClassProp.setIndexDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the index structure of a generic class instance elements.
 void GenClassProp.setElemDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the element value structure of a generic class instance elements.
 

Uses of FieldDesc in org.objectweb.jorm.genclass.lib
 

Fields in org.objectweb.jorm.genclass.lib declared as FieldDesc
protected  FieldDesc[] GenClassMapping.indexFields
          This array contains the ScalarField meta object elements which represent the index fields of the generic class instance.
protected  FieldDesc[] GenClassMapping.identifierFields
          This array contains the ScalarField meta object elements which represent the identifier fields of the generic class instance.
protected  FieldDesc[] GenClassMapping.elemFields
          This array contains the ScalarField meta object elements which represent the element fields of the generic class instance.
 

Methods in org.objectweb.jorm.genclass.lib that return FieldDesc
 FieldDesc[] GenClassMapping.getElemFields()
           
 FieldDesc[] GenClassMapping.getIdentifierFields()
           
 FieldDesc[] GenClassMapping.getIndexFields()
           
 

Methods in org.objectweb.jorm.genclass.lib with parameters of type FieldDesc
 void GenClassMapping.setIdentifierDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the identifier structure of a generic class instance.
 void GenClassMapping.setIndexDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the index structure of a generic class instance elements.
 void GenClassMapping.setElemDesc(FieldDesc[] fds)
          Defines the fields property specifying the fields composing the element value structure of a generic class instance elements.
 

Uses of FieldDesc in org.objectweb.jorm.mapper.rdb.genclass
 

Subclasses of FieldDesc in org.objectweb.jorm.mapper.rdb.genclass
 class RdbFieldDesc
          This class provides a description of a JORM field to be mapped to a RDBMS.
 

Constructors in org.objectweb.jorm.mapper.rdb.genclass with parameters of type FieldDesc
RdbGenClassPNGIterator(java.sql.PreparedStatement ps, java.sql.ResultSet rs, FieldDesc[] rfds, RdbGenClassMapping gcm, boolean prefetching, RdbAdapter adapter)