Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-03-26 23:09:32 +0000
committerkmoore2008-03-26 23:09:32 +0000
commit1110c786b1188bd04622d94e249dc3857fc37aff (patch)
treecb909f8a3b51b1be77eb9e69f01b77c60b65bf81 /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
parentfe32f0daa3187394ce8f9b2cab3144cbe02bc454 (diff)
downloadwebtools.dali-1110c786b1188bd04622d94e249dc3857fc37aff.tar.gz
webtools.dali-1110c786b1188bd04622d94e249dc3857fc37aff.tar.xz
webtools.dali-1110c786b1188bd04622d94e249dc3857fc37aff.zip
added get prefixes to more interfaces
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.java6
1 files changed, 3 insertions, 3 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 c0f659b129..9723046ef6 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
@@ -261,20 +261,20 @@ public interface Entity extends TypeMapping, GeneratorHolder, QueryHolder, IdCla
* Non-entities in the hierarchy should be ignored, ie skip
* over them in the search for the root.
*/
- Entity rootEntity();
+ Entity getRootEntity();
/**
* 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)
*/
- Entity parentEntity();
+ Entity getParentEntity();
/**
* 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 primaryKeyColumnName();
+ String getPrimaryKeyColumnName();
}

Back to the top