Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-11 16:20:04 +0000
committerBrian Vosburgh2013-03-11 22:16:55 +0000
commit8d9cd11a7f437c0635939caa8e7e344c373f3761 (patch)
tree0bbb0a7f9bacf84612f5144c5d02cd3dfb36a111 /jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2
parenta74c72dd964285c16ce59348f65a71aa3fc04344 (diff)
downloadwebtools.dali-8d9cd11a7f437c0635939caa8e7e344c373f3761.tar.gz
webtools.dali-8d9cd11a7f437c0635939caa8e7e344c373f3761.tar.xz
webtools.dali-8d9cd11a7f437c0635939caa8e7e344c373f3761.zip
rename MetamodelField to MetamodelField2_0
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/AttributeMapping2_0.java2
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField2_0.java (renamed from jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField.java)5
2 files changed, 3 insertions, 4 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/AttributeMapping2_0.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/AttributeMapping2_0.java
index 17f2ae820d..b51d605d9b 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/AttributeMapping2_0.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/AttributeMapping2_0.java
@@ -32,7 +32,7 @@ public interface AttributeMapping2_0
* Return <code>null</code> if the mapping is not to be part of the
* Canonical Metamodel.
*/
- MetamodelField getMetamodelField();
+ MetamodelField2_0 getMetamodelField();
/**
* Return the name of the mapping's type as used in the Canonical Metamodel.
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField2_0.java
index 4e68b8268e..a59142e794 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/MetamodelField2_0.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2010 Oracle. All rights reserved.
+ * Copyright (c) 2009, 2013 Oracle. All rights reserved.
* 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.
@@ -21,7 +21,7 @@ package org.eclipse.jpt.jpa.core.jpa2.context;
* @version 2.3
* @since 2.3
*/
-public interface MetamodelField {
+public interface MetamodelField2_0 {
Iterable<String> getModifiers();
@@ -32,5 +32,4 @@ public interface MetamodelField {
String getName();
String DEFAULT_TYPE_NAME = java.lang.Object.class.getName(); // ???
-
}

Back to the top