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

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

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

Methods in org.objectweb.jorm.interp.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.interp.genclass.lib
 

Fields in org.objectweb.jorm.interp.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.interp.genclass.lib that return FieldDesc
 FieldDesc[] GenClassMapping.getElemFields()
           
 FieldDesc[] GenClassMapping.getIdentifierFields()
           
 FieldDesc[] GenClassMapping.getIndexFields()
           
 

Methods in org.objectweb.jorm.interp.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.interp.genclass.rdb.api
 

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

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

Methods in org.objectweb.jorm.interp.genclass.rdb.lib with parameters of type FieldDesc
 PName RdbGenClassMapping.decodeSingle(FieldDesc fd, java.sql.ResultSet resultSet, int idx)
           
 

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