Uses of Interface
org.apache.jdo.model.jdo.JDOClass

Packages that use JDOClass
org.apache.jdo.impl.enhancer.meta.model   
org.apache.jdo.impl.fostore This package contains the implementation of the File/Object Store JDO Reference Implementation (FOStore, pronounced "foster"). 
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.java.runtime This package contains a runtime specific JavaModel implementation based on 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.impl.model.jdo.util   
org.apache.jdo.impl.state   
org.apache.jdo.model.java This package defines the JavaModel API. 
org.apache.jdo.model.jdo This package defines the JDOModel API. 
 

Uses of JDOClass in org.apache.jdo.impl.enhancer.meta.model
 

Methods in org.apache.jdo.impl.enhancer.meta.model that return JDOClass
private  JDOClass EnhancerMetaDataJDOModelImpl.getJDOClass(java.lang.String classPath)
           
 

Uses of JDOClass in org.apache.jdo.impl.fostore
 

Fields in org.apache.jdo.impl.fostore declared as JDOClass
protected  JDOClass AbstractRequest.jdoClass
          Class meta data of the object represented by the constructor's given state manager
 

Methods in org.apache.jdo.impl.fostore that return JDOClass
(package private)  JDOClass FOStoreModel.getJDOClass(java.lang.Class c)
           
 

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

Methods in org.apache.jdo.impl.model.java that return JDOClass
 JDOClass AbstractJavaType.getJDOClass()
           
 

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

Fields in org.apache.jdo.impl.model.java.reflection declared as JDOClass
private  JDOClass ReflectionJavaType.jdoClass
          The JDO metadata, if this type represents a pc class.
 

Methods in org.apache.jdo.impl.model.java.reflection that return JDOClass
 JDOClass ReflectionJavaType.getJDOClass()
          Returns the JDOClass instance if this JavaType represents a persistence capable class.
 

Uses of JDOClass in org.apache.jdo.impl.model.java.runtime
 

Methods in org.apache.jdo.impl.model.java.runtime that return JDOClass
private  JDOClass RegisterClassListener.createJDOClass(java.lang.Class pcClass)
          Internal method to update the corresponding JDOClass instance with the runtime meta data.
 

Methods in org.apache.jdo.impl.model.java.runtime with parameters of type JDOClass
private  void RegisterClassListener.updateJDOClass(JDOClass jdoClass, java.lang.String[] fieldNames, java.lang.Class[] fieldTypes, byte[] fieldFlags, java.lang.Class pcSuperclass)
          Internal method to update the specified JDOClass instance with the runtime meta data.
 

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

Classes in org.apache.jdo.impl.model.jdo that implement JDOClass
 class JDOClassImplDynamic
          An instance of this class represents the JDO metadata of a persistence capable class.
 

Fields in org.apache.jdo.impl.model.jdo declared as JDOClass
protected  JDOClass JDOClassImplDynamic.pcSuperclass
          Relationship JDOClass<->JDOClass.
private  JDOClass JDOMemberImpl.declaringClass
          Relationship JDOClass<->JDOMember.
 

Methods in org.apache.jdo.impl.model.jdo that return JDOClass
 JDOClass JDOClassImplDynamic.getPersistenceCapableSuperclass()
          Returns the JDOClass instance for the persistence-capable superclass of this JDOClass.
 JDOClass JDOClassImplDynamic.createJDOClass(java.lang.String name)
          This method returns a JDOClass instance representing an inner class of this JDOClass If this JDOClass already declares such an inner class, the existing JDOClass instance is returned.
 JDOClass[] JDOClassImplDynamic.getDeclaredClasses()
          Returns the collection of JDOClass instances declared by this JDOClass.
 JDOClass JDOClassImplDynamic.getPersistenceCapableRootClass()
          Returns the least-derived (topmost) persistence-capable class in the hierarchy of this JDOClass.
protected  JDOClass JDOClassImplDynamic.newJDOClassInstance()
          Returns a new instance of the JDOClass implementation class.
 JDOClass JDOMemberImpl.getDeclaringClass()
          Get the declaring class of this JDOMember.
 JDOClass JDOModelImplDynamic.createJDOClass(java.lang.String className)
          The method returns a JDOClass instance for the specified fully qualified class name.
 JDOClass JDOModelImplDynamic.createJDOClass(java.lang.String className, boolean loadXMLMetadata)
          The method returns a JDOClass instance for the specified fully qualified class name.
 JDOClass JDOModelImplDynamic.getJDOClass(java.lang.String className)
          The method returns the JDOClass instance for the specified fully qualified class name if present.
 JDOClass JDOModelImplDynamic.getJDOClass(java.lang.String className, boolean loadXMLMetadata)
          The method returns the JDOClass instance for the specified fully qualified class name if present.
 JDOClass[] JDOModelImplDynamic.getDeclaredClasses()
          Returns the collection of JDOClass instances declared by this JDOModel in the format of an array.
 JDOClass JDOModelImplDynamic.getJDOClassForObjectIdClass(JavaType objectIdClass)
          This method returns the JDOClass instance that defines the specified type as its objectId class.
protected  JDOClass JDOModelImplDynamic.newJDOClassInstance()
          Returns a new instance of the JDOClass implementation class.
private  JDOClass JDOModelImplDynamic.lookupXMLMetadata(JDOClass jdoClass)
          The method seaches JDO metadata for the class with the specified class name.
private  JDOClass JDOModelImplDynamic.lookupXMLMetadata(java.lang.String className)
          The method seaches JDO metadata for the class with the specified class name.
private  JDOClass JDOModelImplDynamic.loadXMLResource(java.lang.String resource, java.lang.String className)
          Load the specified resource assuming it contains JDO metadata for one or more persistence capable classes.
 

Methods in org.apache.jdo.impl.model.jdo with parameters of type JDOClass
 void JDOClassImplDynamic.setPersistenceCapableSuperclass(JDOClass pcSuperclass)
          Set the JDOClass for the persistence-capable superclass of this JDOClass.
 void JDOMemberImpl.setDeclaringClass(JDOClass declaringClass)
          Set the declaring class of this JDOMember.
private  JDOClass JDOModelImplDynamic.lookupXMLMetadata(JDOClass jdoClass)
          The method seaches JDO metadata for the class with the specified class name.
private  void JDOModelImplDynamic.checkSuperclass(JDOClass jdoClass)
          Updates the pcSuperclass property of the specified JDOClass and all its superclasses.
 

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

Classes in org.apache.jdo.impl.model.jdo.caching that implement JDOClass
 class JDOClassImplCaching
          An instance of this class represents the JDO metadata of a persistence capable class.
 

Methods in org.apache.jdo.impl.model.jdo.caching that return JDOClass
 JDOClass JDOClassImplCaching.getPersistenceCapableSuperclass()
          Returns the JDOClass instance for the persistence-capable superclass of this JDOClass.
protected  JDOClass JDOClassImplCaching.newJDOClassInstance()
          Returns a new instance of the JDOClass implementation class.
 JDOClass JDOModelImplCaching.getJDOClassForObjectIdClass(JavaType objectIdClass)
          This method returns the JDOClass instance that defines the specified type as its objectId class.
protected  JDOClass JDOModelImplCaching.newJDOClassInstance()
          Returns a new instance of the JDOClass implementation class.
 

Uses of JDOClass in org.apache.jdo.impl.model.jdo.util
 

Methods in org.apache.jdo.impl.model.jdo.util with parameters of type JDOClass
static void PrintSupport.printJDOClass(JDOClass jdoClass)
           
private static void PrintSupport.printJDOClass(int indent, JDOClass jdoClass)
           
 

Uses of JDOClass in org.apache.jdo.impl.state
 

Fields in org.apache.jdo.impl.state declared as JDOClass
private  JDOClass StateManagerImpl.jdoClass
           
 

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

Methods in org.apache.jdo.model.java that return JDOClass
 JDOClass JavaType.getJDOClass()
          Returns the JDOClass instance if this JavaType represents a persistence capable class.
 

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

Methods in org.apache.jdo.model.jdo that return JDOClass
 JDOClass JDOModel.createJDOClass(java.lang.String className)
          The method returns a JDOClass instance for the specified fully qualified class name.
 JDOClass JDOModel.createJDOClass(java.lang.String className, boolean loadXMLMetadata)
          The method returns a JDOClass instance for the specified fully qualified class name.
 JDOClass JDOModel.getJDOClass(java.lang.String className)
          The method returns the JDOClass instance for the specified fully qualified class name if present.
 JDOClass JDOModel.getJDOClass(java.lang.String className, boolean loadXMLMetadata)
          The method returns the JDOClass instance for the specified fully qualified class name if present.
 JDOClass[] JDOModel.getDeclaredClasses()
          Returns the collection of JDOClass instances declared by this JDOModel in the format of an array.
 JDOClass JDOModel.getJDOClassForObjectIdClass(JavaType objectIdClass)
          This method returns the JDOClass instance that defines the specified type as its objectId class.
 JDOClass JDOClass.getPersistenceCapableSuperclass()
          Returns the JDOClass instance for the persistence-capable superclass of this JDOClass.
 JDOClass JDOClass.createJDOClass(java.lang.String name)
          This method returns a JDOClass instance representing an inner class of this JDOClass If this JDOClass already declares such an inner class, the existing JDOClass instance is returned.
 JDOClass[] JDOClass.getDeclaredClasses()
          Returns the collection of JDOClass instances declared by this JDOClass.
 JDOClass JDOClass.getPersistenceCapableRootClass()
          Returns the least-derived (topmost) persistence-capable class in the hierarchy of this JDOClass.
 JDOClass JDOMember.getDeclaringClass()
          Get the declaring class of this JDOMember.
 

Methods in org.apache.jdo.model.jdo with parameters of type JDOClass
 void JDOClass.setPersistenceCapableSuperclass(JDOClass pcSuperclass)
          Set the JDOClass for the persistence-capable superclass of this JDOClass.
 void JDOMember.setDeclaringClass(JDOClass declaringClass)
          Set the declaring class of this JDOMember.