Uses of Class
org.apache.jdo.model.ModelException

Packages that use ModelException
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.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.xml   
org.apache.jdo.model This package defines the Model Exception classes. 
org.apache.jdo.model.java This package defines the JavaModel API. 
org.apache.jdo.model.jdo This package defines the JDOModel API. 
 

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

Methods in org.apache.jdo.impl.model.java that throw ModelException
 void AbstractJavaModel.setParent(JavaModel parent)
          Set the parent JavaModel for this JavaModel.
 void AbstractJavaModel.setJDOModel(JDOModel jdoModel)
          Sets the corresponding JDOModel instance.
abstract  JavaModel AbstractJavaModelFactory.createJavaModel(java.lang.Object key)
          Creates a new empty JavaModel instance.
 

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

Methods in org.apache.jdo.impl.model.java.runtime that throw ModelException
 JavaModel RuntimeJavaModelFactory.createJavaModel(java.lang.Object key)
          Creates a new empty JavaModel instance.
private  JDOClass RegisterClassListener.createJDOClass(java.lang.Class pcClass)
          Internal method to update the corresponding JDOClass instance with the runtime meta data.
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.
private  void RegisterClassListener.updateJDOField(JDOField jdoField, java.lang.Class fieldType, byte fieldFlags, RuntimeJavaType declaringClass)
          Internal method to update the specified JDOField instance with the runtime meta data.
 

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

Methods in org.apache.jdo.impl.model.jdo that throw ModelException
 void JDOClassImplDynamic.removeDeclaredMember(JDOMember member)
          Remove the supplied member from the collection of members maintained by this JDOClass.
 JDOField JDOClassImplDynamic.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 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.
 void JDOFieldImplDynamic.setPersistenceModifier(int persistenceModifier)
          Set the persistence modifier for this JDOField.
 void JDOFieldImplDynamic.setSerializable(boolean serializable)
          Set whether this JDOField is serializable or not.
 JDOReference JDOFieldImplDynamic.createJDOReference()
          Creates and returns a new JDOReference instance.
 JDOCollection JDOFieldImplDynamic.createJDOCollection()
          Creates and returns a new JDOCollection instance.
 JDOArray JDOFieldImplDynamic.createJDOArray()
          Creates and returns a new JDOArray instance.
 JDOMap JDOFieldImplDynamic.createJDOMap()
          Creates and returns a new JDOMap instance.
 JDOPackage JDOModelImplDynamic.createJDOPackage(java.lang.String packageName)
          The method returns a JDOClass instance for the specified package name.
 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.
 

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

Methods in org.apache.jdo.impl.model.jdo.caching that throw ModelException
 void JDOClassImplCaching.removeDeclaredMember(JDOMember member)
          Remove the supplied member from the collection of members maintained by this JDOClass.
 JDOField JDOClassImplCaching.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 JDOReference JDOFieldImplCaching.createJDOReference()
          Creates and returns a new JDOReference instance.
 JDOCollection JDOFieldImplCaching.createJDOCollection()
          Creates and returns a new JDOCollection instance.
 JDOArray JDOFieldImplCaching.createJDOArray()
          Creates and returns a new JDOArray instance.
 JDOMap JDOFieldImplCaching.createJDOMap()
          Creates and returns a new JDOMap instance.
 

Uses of ModelException in org.apache.jdo.impl.model.jdo.xml
 

Methods in org.apache.jdo.impl.model.jdo.xml that throw ModelException
 JavaModel XMLExists.XMLExistsJDOModelFactory.createJavaModel(java.lang.Object key)
           
 

Uses of ModelException in org.apache.jdo.model
 

Subclasses of ModelException in org.apache.jdo.model
 class ModelValidationException
          This exception indicates a problem during model validation.
 class ModelVetoException
          This exception indicates a problem during model update.
 

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

Methods in org.apache.jdo.model.java that throw ModelException
 void JavaModel.setParent(JavaModel parent)
          Set the parent JavaModel for this JavaModel.
 void JavaModel.setJDOModel(JDOModel jdoModel)
          Sets the corresponding JDOModel instance.
 JavaModel JavaModelFactory.createJavaModel(java.lang.Object key)
          Creates a new empty JavaModel instance.
 

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

Methods in org.apache.jdo.model.jdo that throw ModelException
 JDOPackage JDOModel.createJDOPackage(java.lang.String packageName)
          The method returns a JDOClass instance for the specified package name.
 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.
 void JDOElement.removeJDOExtension(JDOExtension vendorExtension)
          Remove the supplied vendor extension from the collection of extensions maintained by this JDOElement.
 JDOExtension JDOElement.createJDOExtension()
          Creates a new JDOExtension instance and attaches it to the specified JDOElement object.
 void JDOElement.addPropertyChangeListener(java.beans.PropertyChangeListener l)
          Add a property change listener.
 void JDOElement.removePropertyChangeListener(java.beans.PropertyChangeListener l)
          Remove a property change listener.
 void JDOElement.addVetoableChangeListener(java.beans.VetoableChangeListener l)
          Add a vetoable change listener.
 void JDOElement.removeVetoableChangeListener(java.beans.VetoableChangeListener l)
          Remove a vetoable change listener.
 void JDOClass.setIdentityType(int identityType)
          Set the object identity type of this JDOClass.
 void JDOClass.setObjectIdClass(JavaType objectIdClass)
          Set the JavaType representation of the object identity class (primary key class) for this JDOClass.
 void JDOClass.setDeclaredObjectIdClassName(java.lang.String declaredObjectIdClassName)
          Set the fully qualified name of the object identity class (primary key class) declared for this JDOClass.
 void JDOClass.setRequiresExtent(boolean requiresExtent)
          Set whether an extent must be managed for the persistence-capable class described by this JDOClass.
 void JDOClass.setPersistenceCapableSuperclassName(java.lang.String pcSuperclassName)
          Set the fully qualified class name of the persistence-capable superclass of the persistence-capable class described by this JDOClass.
 void JDOClass.setJavaType(JavaType javaType)
          Set the JavaType representation corresponding to this JDOClass.
 void JDOClass.removeDeclaredMember(JDOMember member)
          Remove the supplied member from the collection of members maintained by this JDOClass.
 void JDOClass.setPersistenceCapableSuperclass(JDOClass pcSuperclass)
          Set the JDOClass for the persistence-capable superclass of this JDOClass.
 JDOField JDOClass.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 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.
 void JDOMember.setName(java.lang.String name)
          Sets the name of this JDOMember.
 void JDOMember.setDeclaringClass(JDOClass declaringClass)
          Set the declaring class of this JDOMember.
 void JDOPackage.setName(java.lang.String name)
          Sets the name of this JDOPackage.
 void JDOExtension.setVendorName(java.lang.String vendorName)
          Sets the vendor name for this vendor extension.
 void JDOExtension.setKey(java.lang.String key)
          Sets the key for this vendor extension.
 void JDOExtension.setValue(java.lang.Object value)
          Sets the value for this vendor extension.
 void JDOField.setPersistenceModifier(int persistenceModifier)
          Set the persistence modifier for this JDOField.
 void JDOField.setPrimaryKey(boolean primaryKey)
          Set whether this JDOField is a key field or not.
 void JDOField.setNullValueTreatment(int nullValueTreament)
          Sets the null value treatment indicator for this JDOField.
 void JDOField.setDefaultFetchGroup(boolean defaultFetchGroup)
          Set whether this JDOField is part of the default fetch group or not.
 void JDOField.setEmbedded(boolean embedded)
          Set whether the field should be stored if possible as part of the instance instead of as its own instance in the datastore.
 void JDOField.setSerializable(boolean serializable)
          Set whether this JDOField is serializable or not.
 void JDOField.setJavaField(JavaField javaField)
          Sets the corresponding Java field representation for this JDOField.
 void JDOField.setRelationship(JDORelationship relationship)
          Set the relationship information for this JDOField.
 JDOReference JDOField.createJDOReference()
          Creates and returns a new JDOReference instance.
 JDOCollection JDOField.createJDOCollection()
          Creates and returns a new JDOCollection instance.
 JDOArray JDOField.createJDOArray()
          Creates and returns a new JDOArray instance.
 JDOMap JDOField.createJDOMap()
          Creates and returns a new JDOMap instance.
 void JDORelationship.setLowerBound(int lowerBound)
          Set the lower cardinality bound for this relationship element.
 void JDORelationship.setUpperBound(int upperBound)
          Set the upper cardinality bound for this relationship element.
 void JDORelationship.setDeclaringField(JDOField declaringField)
          Set the declaring field of this JDORelationship.
 void JDORelationship.setInverseRelationship(JDORelationship inverseRelationship)
          Set the inverse JDORelationship in the case of a managed relationship.
 void JDOCollection.setEmbeddedElement(boolean embeddedElement)
          Set whether the values of the elements should be stored if possible as part of the instance instead of as their own instances in the datastore.
 void JDOCollection.setElementType(JavaType elementType)
          Set the type representation of the collection elements.
 void JDOCollection.setElementTypeName(java.lang.String elementTypeName)
          Set string representation of the type of collection elements.
 void JDOArray.setEmbeddedElement(boolean embeddedElement)
          Set whether the values of the elements should be stored if possible as part of the instance instead of as their own instances in the datastore.
 void JDOMap.setEmbeddedKey(boolean embeddedKey)
          Set whether the keys of the map should be stored if possible as part of the instance instead of as their own instances in the datastore.
 void JDOMap.setKeyType(JavaType keyType)
          Set the type representation of the keys for this JDOMap.
 void JDOMap.setKeyTypeName(java.lang.String keyTypeName)
          Set string representation of the type of the keys for this JDOMap.
 void JDOMap.setEmbeddedValue(boolean embeddedValue)
          Set whether the values of the map should be stored if possible as part of the instance instead of as their own instances in the datastore.
 void JDOMap.setValueType(JavaType valueType)
          Set the type representation of the values for this JDOMap.
 void JDOMap.setValueTypeName(java.lang.String valueTypeName)
          Set string representation of the type of the values for this JDOMap.
 JDOModel JDOModelFactory.createJDOModel(JavaModel javaModel, boolean loadXMLMetadataDefault)
          Creates a new empty JDOModel instance.