Uses of Interface
org.apache.jdo.model.java.JavaField

Packages that use JavaField
org.apache.jdo.impl.model.java This package contains classes that are for use across all kinds of JavaModel implementations. 
org.apache.jdo.impl.model.java.reflection   
org.apache.jdo.impl.model.jdo This package contains classes that implement the JDO model interfaces and provide access to JDO metadata. 
org.apache.jdo.impl.model.jdo.caching   
org.apache.jdo.model.java This package defines the JavaModel API. 
org.apache.jdo.model.jdo This package defines the JDOModel API. 
 

Uses of JavaField in org.apache.jdo.impl.model.java
 

Classes in org.apache.jdo.impl.model.java that implement JavaField
 class BaseReflectionJavaField
          This class provides a basic JavaField implementation using a reflection Field instance.
 class JavaPropertyImpl
          Default Implementation of the JavaProperty interface.
 

Methods in org.apache.jdo.impl.model.java that return JavaField
 JavaField BaseReflectionJavaType.getJavaField(java.lang.String fieldName)
          Returns a JavaField instance that reflects the field with the specified name of the class or interface represented by this JavaType instance.
 JavaField[] BaseReflectionJavaType.getDeclaredJavaFields()
           
 JavaField AbstractJavaType.getJavaField(java.lang.String name)
           
 JavaField[] AbstractJavaType.getDeclaredJavaFields()
           
 

Uses of JavaField in org.apache.jdo.impl.model.java.reflection
 

Classes in org.apache.jdo.impl.model.java.reflection that implement JavaField
 class ReflectionJavaField
          A reflection based JavaField implementation used at runtime.
 

Methods in org.apache.jdo.impl.model.java.reflection that return JavaField
 JavaField ReflectionJavaType.getJavaField(java.lang.String fieldName)
          Returns a JavaField instance that reflects the field with the specified name of the class or interface represented by this JavaType instance.
 JavaField[] ReflectionJavaType.getDeclaredJavaFields()
          Returns an array of JavaField instances representing the declared fields of the class represented by this JavaType instance.
 JavaField ReflectionJavaType.getDeclaredJavaField(java.lang.String fieldName)
          Returns a JavaField instance that reflects the declared field with the specified name of the class or interface represented by this JavaType instance.
protected  JavaField ReflectionJavaType.newJavaFieldInstance(java.lang.String fieldName, JavaType type)
          Creates a new instance of the JavaField implementation class.
protected  JavaField ReflectionJavaType.newJavaFieldInstance(java.lang.reflect.Field field)
          Creates a new instance of the JavaField implementation class.
 

Uses of JavaField in org.apache.jdo.impl.model.jdo
 

Fields in org.apache.jdo.impl.model.jdo declared as JavaField
protected  JavaField JDOFieldImplDynamic.javaField
          Property javaField.
 

Methods in org.apache.jdo.impl.model.jdo that return JavaField
 JavaField JDOPropertyImplDynamic.getJavaField()
          Get the corresponding JavaField representation for this JDOProperty.
 JavaField JDOFieldImplDynamic.getJavaField()
          Get the corresponding JavaField representation for this JDOField.
 JavaField JDOAssociatedPropertyImplDynamic.getJavaField()
          Get the corresponding JavaProperty representation for this JDOProperty.
 

Methods in org.apache.jdo.impl.model.jdo with parameters of type JavaField
 void JDOPropertyImplDynamic.setJavaField(JavaField javaField)
          Sets the corresponding JavaProperty representation for this JDOProperty.
 void JDOFieldImplDynamic.setJavaField(JavaField javaField)
          Sets the corresponding Java field representation for this JDOField.
 void JDOAssociatedPropertyImplDynamic.setJavaField(JavaField javaField)
          Sets the corresponding JavaProperty representation for this JDOProperty.
 

Uses of JavaField in org.apache.jdo.impl.model.jdo.caching
 

Methods in org.apache.jdo.impl.model.jdo.caching that return JavaField
 JavaField JDOFieldImplCaching.getJavaField()
          Get the corresponding JavaField representation for this JDOField.
 JavaField JDOAssociatedPropertyImplCaching.getJavaField()
          Get the corresponding JavaProperty representation for this JDOProperty.
 JavaField JDOPropertyImplCaching.getJavaField()
          Get the corresponding JavaField representation for this JDOProperty.
 

Methods in org.apache.jdo.impl.model.jdo.caching with parameters of type JavaField
 void JDOPropertyImplCaching.setJavaField(JavaField javaField)
          Sets the corresponding JavaProperty representation for this JDOProperty.
 

Uses of JavaField in org.apache.jdo.model.java
 

Subinterfaces of JavaField in org.apache.jdo.model.java
 interface JavaProperty
          A JavaProperty instance represents a JavaBeans property.
 

Methods in org.apache.jdo.model.java that return JavaField
 JavaField JavaType.getJavaField(java.lang.String name)
          Returns a JavaField instance that reflects the field with the specified name of the class or interface represented by this JavaType instance.
 JavaField[] JavaType.getDeclaredJavaFields()
          Returns an array of JavaField instances representing the declared fields of the class represented by this JavaType instance.
 

Uses of JavaField in org.apache.jdo.model.jdo
 

Methods in org.apache.jdo.model.jdo that return JavaField
 JavaField JDOField.getJavaField()
          Get the corresponding Java field representation for this JDOField.
 

Methods in org.apache.jdo.model.jdo with parameters of type JavaField
 void JDOField.setJavaField(JavaField javaField)
          Sets the corresponding Java field representation for this JDOField.