org.eclipse.jpt.core.context.java
Interface JavaBaseEmbeddedMapping

All Superinterfaces:
AttributeMapping, AttributeOverride.Owner, BaseEmbeddedMapping, BaseOverride.Owner, org.eclipse.core.runtime.IAdaptable, JavaAttributeMapping, JavaJpaContextNode, JpaContextNode, JpaNode, Model
All Known Subinterfaces:
JavaEmbeddedIdMapping, JavaEmbeddedMapping

public interface JavaBaseEmbeddedMapping
extends JavaAttributeMapping, BaseEmbeddedMapping

Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Field Summary
 
Fields inherited from interface org.eclipse.jpt.core.context.BaseEmbeddedMapping
SPECIFIED_ATTRIBUTE_OVERRIDES_LIST, VIRTUAL_ATTRIBUTE_OVERRIDES_LIST
 
Method Summary
 java.util.ListIterator<JavaAttributeOverride> attributeOverrides()
          Return a list iterator of the attribute overrides whether specified or virtual.
 JavaAttributeOverride getAttributeOverrideNamed(java.lang.String name)
          Return the attribute overrides, whether specified or default, with the given name.
 java.util.ListIterator<JavaAttributeOverride> specifiedAttributeOverrides()
          Return a list iterator of the specified attribute overrides.
 java.util.ListIterator<JavaAttributeOverride> virtualAttributeOverrides()
          Return a list iterator of the virtual attribute overrides.
 
Methods inherited from interface org.eclipse.jpt.core.context.java.JavaAttributeMapping
correspondingAnnotationNames, getAnnotationName, getPersistentAttribute, initializeFromResource, update
 
Methods inherited from interface org.eclipse.jpt.core.context.AttributeMapping
getKey, getPrimaryKeyColumnName, getTypeMapping, isDefault, isIdMapping, isOverridableAssociationMapping, isOverridableAttributeMapping
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getEntityMappings, getOrmPersistentType, getPersistenceUnit
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent, getResource
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.context.java.JavaJpaContextNode
addToMessages, getValidationTextRange, javaCompletionProposals
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getEntityMappings, getOrmPersistentType, getPersistenceUnit
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent, getResource
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.context.BaseEmbeddedMapping
attributeOverridesSize, moveSpecifiedAttributeOverride, specifiedAttributeOverridesSize, virtualAttributeOverridesSize
 
Methods inherited from interface org.eclipse.jpt.core.context.AttributeMapping
getKey, getPrimaryKeyColumnName, getTypeMapping, isDefault, isIdMapping, isOverridableAssociationMapping, isOverridableAttributeMapping
 
Methods inherited from interface org.eclipse.jpt.core.context.JpaContextNode
getEntityMappings, getOrmPersistentType, getPersistenceUnit
 
Methods inherited from interface org.eclipse.jpt.core.JpaNode
getJpaProject, getParent, getResource
 
Methods inherited from interface org.eclipse.jpt.utility.model.Model
addCollectionChangeListener, addCollectionChangeListener, addListChangeListener, addListChangeListener, addPropertyChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, addTreeChangeListener, removeCollectionChangeListener, removeCollectionChangeListener, removeListChangeListener, removeListChangeListener, removePropertyChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.core.context.AttributeOverride.Owner
getColumnMapping
 
Methods inherited from interface org.eclipse.jpt.core.context.BaseOverride.Owner
getTypeMapping, isVirtual, setVirtual
 

Method Detail

attributeOverrides

java.util.ListIterator<JavaAttributeOverride> attributeOverrides()
Description copied from interface: BaseEmbeddedMapping
Return a list iterator of the attribute overrides whether specified or virtual. This will not be null.

Specified by:
attributeOverrides in interface BaseEmbeddedMapping

virtualAttributeOverrides

java.util.ListIterator<JavaAttributeOverride> virtualAttributeOverrides()
Description copied from interface: BaseEmbeddedMapping
Return a list iterator of the virtual attribute overrides. This will not be null.

Specified by:
virtualAttributeOverrides in interface BaseEmbeddedMapping

specifiedAttributeOverrides

java.util.ListIterator<JavaAttributeOverride> specifiedAttributeOverrides()
Description copied from interface: BaseEmbeddedMapping
Return a list iterator of the specified attribute overrides. This will not be null.

Specified by:
specifiedAttributeOverrides in interface BaseEmbeddedMapping

getAttributeOverrideNamed

JavaAttributeOverride getAttributeOverrideNamed(java.lang.String name)
Description copied from interface: BaseEmbeddedMapping
Return the attribute overrides, whether specified or default, with the given name.

Specified by:
getAttributeOverrideNamed in interface BaseEmbeddedMapping