|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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 | 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.reflection |
Methods in org.apache.jdo.impl.model.java.reflection that throw ModelException | |
JavaModel |
ReflectionJavaModelFactory.createJavaModel(java.lang.Object key)
Creates a new empty JavaModel instance. |
Uses of ModelException in org.apache.jdo.impl.model.jdo |
Methods in org.apache.jdo.impl.model.jdo that throw ModelException | |
void |
JDOPropertyImplDynamic.setJavaField(JavaField javaField)
Sets the corresponding JavaProperty representation for this JDOProperty. |
void |
JDOFieldImplDynamic.setPersistenceModifier(int persistenceModifier)
Set the persistence modifier for this JDOField. |
void |
JDOFieldImplDynamic.setJavaField(JavaField javaField)
Sets the corresponding Java field representation for this JDOField. |
void |
JDOFieldImplDynamic.setSerializable(boolean serializable)
Set whether this JDOField is serializable or not. |
void |
JDOFieldImplDynamic.setMappedByName(java.lang.String mappedByName)
Set the name of the field specified in a mappedBy attribute in the metadata. |
void |
JDOFieldImplDynamic.setRelationship(JDORelationship relationship)
Set the relationship information for this JDOField. |
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. |
void |
JDORelationshipImpl.setMappedBy(JDORelationship mappedBy)
Set the mappedBy relationship for this relationship. |
void |
JDORelationshipImpl.setInverseRelationship(JDORelationship inverseRelationship)
Set the inverse JDORelationship in the case of a two-way relationship. |
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. |
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. |
JDOProperty |
JDOClassImplDynamic.createJDOProperty(java.lang.String name)
This method returns a JDOProperty instance for the property with the specified name. |
JDOProperty |
JDOClassImplDynamic.createJDOProperty(java.lang.String name,
JDOField associatedJDOField)
This method returns a JDOProperty instance for the property with the specified name and associated field. |
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. |
protected JDOProperty |
JDOClassImplDynamic.newJDOPropertyInstance(java.lang.String name,
JDOField associatedJDOField)
Returns a new instance of the JDOProperty implementation class. |
void |
JDOAssociatedPropertyImplDynamic.setJavaField(JavaField javaField)
Sets the corresponding JavaProperty representation for this JDOProperty. |
void |
JDOAssociatedPropertyImplDynamic.setPersistenceModifier(int persistenceModifier)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setPrimaryKey(boolean primaryKey)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setNullValueTreatment(int nullValueTreament)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setDefaultFetchGroup(boolean defaultFetchGroup)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setEmbedded(boolean embedded)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setSerializable(boolean serializable)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setMappedByName(java.lang.String mappedByName)
Throws ModelException. |
void |
JDOAssociatedPropertyImplDynamic.setRelationship(JDORelationship relationship)
Throws ModelException. |
JDOReference |
JDOAssociatedPropertyImplDynamic.createJDOReference()
Throws ModelException. |
JDOCollection |
JDOAssociatedPropertyImplDynamic.createJDOCollection()
Throws ModelException. |
JDOArray |
JDOAssociatedPropertyImplDynamic.createJDOArray()
Throws ModelException. |
JDOMap |
JDOAssociatedPropertyImplDynamic.createJDOMap()
Throws ModelException. |
Constructors in org.apache.jdo.impl.model.jdo that throw ModelException | |
JDOAssociatedPropertyImplDynamic(java.lang.String name,
JDOClass declaringClass,
JDOField associatedJDOField)
Constrcutor. |
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. |
protected JDOProperty |
JDOClassImplCaching.newJDOPropertyInstance(java.lang.String name,
JDOField associatedJDOField)
Returns a new instance of the JDOProperty implementation class. |
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. |
void |
JDOPropertyImplCaching.setJavaField(JavaField javaField)
Sets the corresponding JavaProperty representation for this JDOProperty. |
Constructors in org.apache.jdo.impl.model.jdo.caching that throw ModelException | |
JDOAssociatedPropertyImplCaching(java.lang.String name,
JDOClass declaringClass,
JDOField associatedJDOField)
Constructor. |
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. |
void |
JavaModelFactory.removeJavaModel(JavaModel javaModel)
Removes the specified javaModel from the JavaModel cache. |
void |
JavaModelFactory.removeJavaModel(java.lang.Object key)
Removes the JavaModel for the specified key from the JavaModel cache. |
Uses of ModelException in org.apache.jdo.model.jdo |
Methods in org.apache.jdo.model.jdo that throw ModelException | |
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.setMappedByName(java.lang.String mappedByName)
Set the name of the field specified in a mappedBy attribute in the metadata. |
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 |
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 |
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 |
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. |
void |
JDOClass.setShortName(java.lang.String shortName)
Set the short name of this JDOClass. |
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. |
JDOProperty |
JDOClass.createJDOProperty(java.lang.String name)
This method returns a JDOProperty instance for the property with the specified name. |
JDOProperty |
JDOClass.createJDOProperty(java.lang.String name,
JDOField associatedField)
This method returns a JDOProperty instance for the property with the specified name and associated field. |
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 |
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 |
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.setMappedBy(JDORelationship mappedBy)
Set the mappedBy relationship for this relationship. |
void |
JDORelationship.setInverseRelationship(JDORelationship inverseRelationship)
Deprecated. - call setMappedBy instead |
JDOModel |
JDOModelFactory.createJDOModel(JavaModel javaModel,
boolean loadXMLMetadataDefault)
Creates a new empty JDOModel instance. |
void |
JDOModelFactory.removeJDOModel(JDOModel jdoModel)
Removes the specified jdoModel from the JDOModel cache. |
void |
JDOModelFactory.removeJDOModel(JavaModel javaModel)
Removes the JDOModel for the specified javaModel from the JDOModel cache. |
void |
JDOPackage.setName(java.lang.String name)
Sets the name of this JDOPackage. |
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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |