Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-03-26 17:45:50 +0000
committerkmoore2008-03-26 17:45:50 +0000
commitdec48e3f28ed2935835bd48b0081343c30fef7b2 (patch)
treef56c5ec7a7500e4e8cfe01110d0d5d4db51cc39a /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java
parentdbda73e5b0ab2a782781f937eda3e49a7c2b4e67 (diff)
downloadwebtools.dali-dec48e3f28ed2935835bd48b0081343c30fef7b2.tar.gz
webtools.dali-dec48e3f28ed2935835bd48b0081343c30fef7b2.tar.xz
webtools.dali-dec48e3f28ed2935835bd48b0081343c30fef7b2.zip
more get prefix changes to jpt.core.context
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java
index 832812237b..4e5205fb4a 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/PersistentAttribute.java
@@ -31,12 +31,12 @@ public interface PersistentAttribute extends JpaContextNode, JpaStructureNode
* The key may be for either the "specified" mapping or, if the "specified"
* mapping is missing, the "default" mapping.
*/
- String mappingKey();
+ String getMappingKey();
/**
* Return the key for the attribute's "default" mapping.
*/
- String defaultMappingKey();
+ String getDefaultMappingKey();
/**
* Return the attribute's "specified" mapping, or if it is null
@@ -58,15 +58,15 @@ public interface PersistentAttribute extends JpaContextNode, JpaStructureNode
String SPECIFIED_MAPPING_PROPERTY = "specifiedMappingProperty";
String DEFAULT_MAPPING_PROPERTY = "defaultMappingProperty";
- TypeMapping typeMapping();
+ TypeMapping getTypeMapping();
- PersistentType persistentType();
+ PersistentType getPersistentType();
/**
* If the attribute is mapped to a primary key column, return the
* column's name, otherwise return null.
*/
- String primaryKeyColumnName();
+ String getPrimaryKeyColumnName();
/**
* Return whether the attribute's "attribute" mapping can be overridden.

Back to the top