Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java
index 7474cdc2d2..cb7cab0f38 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/AbstractJpaContextNode.java
@@ -30,8 +30,8 @@ public abstract class AbstractJpaContextNode extends AbstractJpaNode
// **************** JpaNode impl *******************************************
@Override
- public JpaContextNode parent() {
- return (JpaContextNode) super.parent();
+ public JpaContextNode getParent() {
+ return (JpaContextNode) super.getParent();
}
@@ -41,23 +41,23 @@ public abstract class AbstractJpaContextNode extends AbstractJpaNode
* Overidden in BaseJpaContext, Persistence, PersitsenceXml to throw UnsupportedOperationException
* Overidden in PersistenceUnit to return it.
*/
- public PersistenceUnit persistenceUnit() {
- return parent().persistenceUnit();
+ public PersistenceUnit getPersistenceUnit() {
+ return getParent().getPersistenceUnit();
}
/**
* Overidden in BaseJpaContext to return null
* Overidden in EntityMappings to return it.
*/
- public EntityMappings entityMappings() {
- return parent().entityMappings();
+ public EntityMappings getEntityMappings() {
+ return getParent().getEntityMappings();
}
/**
* Overidden in BaseJpaContext to return null
* Overidden in OrmPersistentType to return it.
*/
- public OrmPersistentType ormPersistentType() {
- return parent().ormPersistentType();
+ public OrmPersistentType getOrmPersistentType() {
+ return getParent().getOrmPersistentType();
}
}

Back to the top