Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbvosburgh2011-01-18 19:45:02 +0000
committerbvosburgh2011-01-18 19:45:02 +0000
commit82ab2e9ae2a75e716f65f5ca88c87fdcd32f3997 (patch)
tree89fc628ad34d24357e7cf1eb3941fd4a3ce68fac /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
parented5e4ea4b242b3b0af6e8647c71b653a265e87e6 (diff)
downloadwebtools.dali-82ab2e9ae2a75e716f65f5ca88c87fdcd32f3997.tar.gz
webtools.dali-82ab2e9ae2a75e716f65f5ca88c87fdcd32f3997.tar.xz
webtools.dali-82ab2e9ae2a75e716f65f5ca88c87fdcd32f3997.zip
[233567] rework context model sync with resource model etc.
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java242
1 files changed, 119 insertions, 123 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
index fb3c46bacc..829ad853e8 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
@@ -3,7 +3,7 @@
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
- *
+ *
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
@@ -12,172 +12,161 @@ package org.eclipse.jpt.core.context;
import java.util.ListIterator;
/**
- * Entity
+ * entity
* <p>
* 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.
- *
- * @version 3.0
+ *
+ * @version 2.3
* @since 2.0
*/
public interface Entity
extends TypeMapping
{
- // **************** name **************************************
-
- /**
- * Return the specified name.
- */
+ // ********** name **********
+
String getSpecifiedName();
-
- /**
- * Set the specified name on the entity.
- */
- void setSpecifiedName(String value);
String SPECIFIED_NAME_PROPERTY = "specifiedName"; //$NON-NLS-1$
-
- /**
- * Return the default name, based on the class name.
- */
+ void setSpecifiedName(String name);
String getDefaultName();
String DEFAULT_NAME_PROPERTY = "defaultName"; //$NON-NLS-1$
-
-
- // **************** id class **********************************************
-
+
+
+ // ********** id class **********
+
/**
* Return the (aggregate) class reference for configuring and validating id class
*/
IdClassReference getIdClassReference();
-
-
- // **************** table **************************************
-
+
+
+ // ********** table **********
+
/**
* Return the table for this entity, either specified or default.
* This will not be null.
*/
Table getTable();
-
+
/**
* Return the name of the entity's primary key column.
* Return null if the entity's primary key is "compound"
* (i.e. the primary key is composed of multiple columns).
*/
String getPrimaryKeyColumnName();
-
+
/**
* Return the entity's default table name, which depends on the entity's
* inheritance hierarchy.
*/
String getDefaultTableName();
-
+
/**
* Return the entity's default schema, which depends on the entity's
* inheritance hierarchy.
*/
String getDefaultSchema();
-
+
/**
* Return the entity's default catalog, which depends on the entity's
* inheritance hierarchy.
*/
String getDefaultCatalog();
-
-
- // **************** secondary tables **************************************
-
+
+
+ // ********** secondary tables **********
+
/**
- * Return a list iterator of the secondary tables whether specified or default.
- * This will not be null.
+ * Return the secondary tables whether specified or default.
*/
- <T extends SecondaryTable> ListIterator<T> secondaryTables();
-
+ ListIterator<? extends ReadOnlySecondaryTable> secondaryTables();
+
/**
* Return the number of secondary tables, both specified and default.
*/
int secondaryTablesSize();
-
+
/**
* Return a list iterator of the specified secondary tables.
* This will not be null.
*/
- <T extends SecondaryTable> ListIterator<T> specifiedSecondaryTables();
-
+ ListIterator<? extends SecondaryTable> specifiedSecondaryTables();
+ String SPECIFIED_SECONDARY_TABLES_LIST = "specifiedSecondaryTables"; //$NON-NLS-1$
+
/**
* Return the number of specified secondary tables.
*/
int specifiedSecondaryTablesSize();
-
+
/**
- * Add a specified secondary table to the entity return the object
+ * Add a specified secondary table to the entity return the object
* representing it.
*/
- SecondaryTable addSpecifiedSecondaryTable(int index);
-
+ SecondaryTable addSpecifiedSecondaryTable();
+
/**
- * Add a specified secondary table to the entity return the object
+ * Add a specified secondary table to the entity return the object
* representing it.
*/
- SecondaryTable addSpecifiedSecondaryTable();
-
+ SecondaryTable addSpecifiedSecondaryTable(int index);
+
/**
* Remove the specified secondary table from the entity.
*/
void removeSpecifiedSecondaryTable(int index);
-
+
/**
* Remove the specified secondary table at the index from the entity.
*/
void removeSpecifiedSecondaryTable(SecondaryTable secondaryTable);
-
+
/**
* Move the specified secondary table from the source index to the target index.
*/
void moveSpecifiedSecondaryTable(int targetIndex, int sourceIndex);
- String SPECIFIED_SECONDARY_TABLES_LIST = "specifiedSecondaryTables"; //$NON-NLS-1$
-
-
- // **************** inheritance **************************************
-
+
+
+ // ********** inheritance strategy **********
+
+ /**
+ * Return the specified inheritance strategy if present, otherwise return the default
+ * inheritance strategy.
+ */
InheritanceType getInheritanceStrategy();
-
- InheritanceType getDefaultInheritanceStrategy();
- String DEFAULT_INHERITANCE_STRATEGY_PROPERTY = "defaultInheritanceStrategy"; //$NON-NLS-1$
-
InheritanceType getSpecifiedInheritanceStrategy();
- void setSpecifiedInheritanceStrategy(InheritanceType newInheritanceType);
+ void setSpecifiedInheritanceStrategy(InheritanceType inheritanceType);
String SPECIFIED_INHERITANCE_STRATEGY_PROPERTY = "specifiedInheritanceStrategy"; //$NON-NLS-1$
-
+ InheritanceType getDefaultInheritanceStrategy();
+ String DEFAULT_INHERITANCE_STRATEGY_PROPERTY = "defaultInheritanceStrategy"; //$NON-NLS-1$
+
+
/**
- * The first parent in the class hierarchy that is an entity.
+ * The first parent in the class hierarchy that is an entity.
* This is the parent in the entity (persistent) inheritance hierarchy
* (vs class inheritance hierarchy). Return null if there is no parent entity.
*/
Entity getParentEntity();
-
+
DiscriminatorColumn getDiscriminatorColumn();
-
+
String getDiscriminatorValue();
-
- String getDefaultDiscriminatorValue();
- String DEFAULT_DISCRIMINATOR_VALUE_PROPERTY = "defaultDiscriminatorValue"; //$NON-NLS-1$
-
String getSpecifiedDiscriminatorValue();
void setSpecifiedDiscriminatorValue(String value);
String SPECIFIED_DISCRIMINATOR_VALUE_PROPERTY = "specifiedDiscriminatorValue"; //$NON-NLS-1$
-
- /**
+ String getDefaultDiscriminatorValue();
+ String DEFAULT_DISCRIMINATOR_VALUE_PROPERTY = "defaultDiscriminatorValue"; //$NON-NLS-1$
+
+ /**
* Return whether a DiscriminatorValue is allowed for this Entity.
- * It is allowed if the entity is not abstract and not part of
+ * It is allowed if the entity is not abstract and not part of
* a table-per-class inheritance hierarchy
*/
boolean specifiedDiscriminatorValueIsAllowed();
String SPECIFIED_DISCRIMINATOR_VALUE_IS_ALLOWED_PROPERTY = "discriminatorValueIsAllowed"; //$NON-NLS-1$
-
+
/**
* Return whether a DiscriminatorValue is undefined for this Entity.
* It is undefined if the entity is abstract or if it
@@ -185,7 +174,7 @@ public interface Entity
*/
boolean discriminatorValueIsUndefined();
String DISCRIMINATOR_VALUE_IS_UNDEFINED_PROPERTY = "discriminatorValueIsUndefined"; //$NON-NLS-1$
-
+
/**
* Return whether a DiscriminatorColumn is allowed for this Entity.
* It is allowed if the entity is the root of the inheritance hierarchy (with descendant entities)
@@ -193,24 +182,24 @@ public interface Entity
*/
boolean specifiedDiscriminatorColumnIsAllowed();
String SPECIFIED_DISCRIMINATOR_COLUMN_IS_ALLOWED_PROPERTY = "specifiedDiscriminatorColumnIsAllowed"; //$NON-NLS-1$
-
+
/**
* Return whether a DiscriminatorColumn is undefined for this Entity.
* It is undefined if the inheritance strategy is table-per-class
*/
boolean discriminatorColumnIsUndefined();
String DISCRIMINATOR_COLUMN_IS_UNDEFINED_PROPERTY = "discriminatorColumnIsUndefined"; //$NON-NLS-1$
-
+
/**
* Return whether a Table is allowed for this Entity.
- * If the inheritance strategy is single-table, Table is allowed only
+ * If the inheritance strategy is single-table, Table is allowed only
* on the root entity.
* If the inheritance strategy is table-per-class it is allowed only
* on concrete entities.
*/
boolean specifiedTableIsAllowed();
String SPECIFIED_TABLE_IS_ALLOWED_PROPERTY = "specifiedTableIsAllowed"; //$NON-NLS-1$
-
+
/**
* Return whether a Table is undefined for this Entity.
* If the inheritance strategy is table-per-class and the entity is
@@ -218,78 +207,85 @@ public interface Entity
*/
boolean tableIsUndefined();
String TABLE_IS_UNDEFINED_PROPERTY = "tableIsUndefined"; //$NON-NLS-1$
-
-
- // **************** primary key join columns ******************************
-
- <T extends PrimaryKeyJoinColumn> ListIterator<T> primaryKeyJoinColumns();
-
+
+
+ // ********** primary key join columns **********
+
+ ListIterator<? extends ReadOnlyPrimaryKeyJoinColumn> primaryKeyJoinColumns();
+
int primaryKeyJoinColumnsSize();
-
- <T extends PrimaryKeyJoinColumn> ListIterator<T> specifiedPrimaryKeyJoinColumns();
+
+ ListIterator<? extends PrimaryKeyJoinColumn> specifiedPrimaryKeyJoinColumns();
String SPECIFIED_PRIMARY_KEY_JOIN_COLUMNS_LIST = "specifiedPrimaryKeyJoinColumns"; //$NON-NLS-1$
-
+
int specifiedPrimaryKeyJoinColumnsSize();
-
- PrimaryKeyJoinColumn getDefaultPrimaryKeyJoinColumn();
- String DEFAULT_PRIMARY_KEY_JOIN_COLUMN = "defaultPrimaryKeyJoinColumn"; //$NON-NLS-1$
-
+
PrimaryKeyJoinColumn addSpecifiedPrimaryKeyJoinColumn(int index);
-
+
+ PrimaryKeyJoinColumn addSpecifiedPrimaryKeyJoinColumn();
+
void removeSpecifiedPrimaryKeyJoinColumn(int index);
-
+
void removeSpecifiedPrimaryKeyJoinColumn(PrimaryKeyJoinColumn primaryKeyJoinColumn);
-
+
void moveSpecifiedPrimaryKeyJoinColumn(int targetIndex, int sourceIndex);
-
-
- // ********** misc **********
-
+
+
+ // ********** containers **********
+
AttributeOverrideContainer getAttributeOverrideContainer();
-
+
AssociationOverrideContainer getAssociationOverrideContainer();
-
+
QueryContainer getQueryContainer();
-
+
GeneratorContainer getGeneratorContainer();
-
-
- // **************** entity inheritance ************************************
-
+
+
+ // ********** entity inheritance **********
+
/**
- * Return whether this entity is a root entity in an inheritance hierarchy
+ * Return whether this entity is a root entity in an inheritance hierarchy.
*/
boolean isRoot();
-
+
/**
- * Return the ultimate top of the inheritance hierarchy
- * This method should never return null. The root
+ * Return the top of the entity's inheritance hierarchy.
+ * This method will never return <code>null</code>. The root
* is defined as the persistent type in the inheritance hierarchy
- * that has no parent. The root should be an entity
- *
- * Non-entities in the hierarchy should be ignored, ie skip
- * over them in the search for the root.
+ * that has no parent. The root will be an entity.
+ * <p>
+ * Non-entities in the hierarchy should be ignored; i.e. we skip
+ * over them in the search for the root.
*/
Entity getRootEntity();
-
+ String ROOT_ENTITY_PROPERTY = "rootEntity"; //$NON-NLS-1$
+
/**
- * The given Entity has this entity as its root entity, add
- * it as a sub entity.
- * @see org.eclipse.jpt.core.context.persistence.PersistenceUnit#addRootWithSubEntities(String)
+ * If the entity is a root entity, return the entity's descendant entities;
+ * if the entity is not a root entity, return an empty collection.
+ * <p>
+ * <strong>NB:</strong> An entity A is a "descendant" of another root
+ * entity B if the <em>name</em> of entity A's root entity's type matches
+ * the name of entity B's type. This means entity A can be a "descendant"
+ * of multiple root entities (typically both the <code>orm.xml</code>
+ * and Java root entities for a particular type); despite entity have only
+ * a single "root" entity (typically the <code>orm.xml</code> root entity).
*/
- void addSubEntity(Entity subEntity);
-
-
- // ************************************************************************
-
+ Iterable<Entity> getDescendants();
+ String DESCENDANTS_COLLECTION = "descendants"; //$NON-NLS-1$
+
+
+ // ********** misc **********
+
/**
* Returns the attribute mapping that matches the name.
* In 2.0 this name could use dot-notation for nested mappings.
*/
AttributeMapping resolveAttributeMapping(String name);
-
+
/**
- * If an entity has a single id attribute, return that attribute.
+ * If an entity has a single id attribute, return that attribute.
* Else return null.
*/
PersistentAttribute getIdAttribute();

Back to the top