Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2006-10-03 09:50:04 +0000
committermtaal2006-10-03 09:50:04 +0000
commitc9ae9a3c8b75de2f7a98c22d2649d29ab822046e (patch)
tree9f298ecbbbfbf0a2e98c28b13db0a5d2eecb3369
parent50a6cf8abdbdd3a2357b76ec2a3c02d268da8a36 (diff)
downloadorg.eclipse.emf.teneo-c9ae9a3c8b75de2f7a98c22d2649d29ab822046e.tar.gz
org.eclipse.emf.teneo-c9ae9a3c8b75de2f7a98c22d2649d29ab822046e.tar.xz
org.eclipse.emf.teneo-c9ae9a3c8b75de2f7a98c22d2649d29ab822046e.zip
Moved EcoreDataTypes to org.eclipse.emf.teneo.util
-rw-r--r--plugins/org.eclipse.emf.teneo.annotations/META-INF/MANIFEST.MF1
-rw-r--r--plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/util/PannotationValidator.java4
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/AbstractMapper.java4
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/BasicMapper.java4
-rw-r--r--plugins/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/util/EcoreDataTypes.java (renamed from plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/util/EcoreDataTypes.java)4
5 files changed, 8 insertions, 9 deletions
diff --git a/plugins/org.eclipse.emf.teneo.annotations/META-INF/MANIFEST.MF b/plugins/org.eclipse.emf.teneo.annotations/META-INF/MANIFEST.MF
index cfbf74921..3e5b977ee 100644
--- a/plugins/org.eclipse.emf.teneo.annotations/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.emf.teneo.annotations/META-INF/MANIFEST.MF
@@ -21,5 +21,4 @@ Export-Package: org.eclipse.emf.teneo.annotations,
org.eclipse.emf.teneo.annotations.pannotation.util,
org.eclipse.emf.teneo.annotations.parser,
org.eclipse.emf.teneo.annotations.processing,
- org.eclipse.emf.teneo.annotations.util,
org.eclipse.emf.teneo.annotations.xml
diff --git a/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/util/PannotationValidator.java b/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/util/PannotationValidator.java
index fede1a761..cc8395c07 100644
--- a/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/util/PannotationValidator.java
+++ b/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/util/PannotationValidator.java
@@ -2,7 +2,7 @@
* <copyright>
* </copyright>
*
- * $Id: PannotationValidator.java,v 1.13 2006/09/28 20:03:57 mtaal Exp $
+ * $Id: PannotationValidator.java,v 1.14 2006/10/03 09:50:06 mtaal Exp $
*/
package org.eclipse.emf.teneo.annotations.pannotation.util;
@@ -70,7 +70,7 @@ import org.eclipse.emf.teneo.annotations.pannotation.TemporalType;
import org.eclipse.emf.teneo.annotations.pannotation.Transient;
import org.eclipse.emf.teneo.annotations.pannotation.UniqueConstraint;
import org.eclipse.emf.teneo.annotations.pannotation.Version;
-import org.eclipse.emf.teneo.annotations.util.EcoreDataTypes;
+import org.eclipse.emf.teneo.util.EcoreDataTypes;
/**
* <!-- begin-user-doc -->
diff --git a/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/AbstractMapper.java b/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/AbstractMapper.java
index 34247691c..2134ae76e 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/AbstractMapper.java
+++ b/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/AbstractMapper.java
@@ -12,7 +12,7 @@
* Davide Marchignoli
* </copyright>
*
- * $Id: AbstractMapper.java,v 1.2 2006/09/04 15:42:32 mtaal Exp $
+ * $Id: AbstractMapper.java,v 1.3 2006/10/03 09:50:08 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.mapper;
@@ -30,8 +30,8 @@ import org.eclipse.emf.teneo.annotations.pamodel.PAnnotatedEStructuralFeature;
import org.eclipse.emf.teneo.annotations.pannotation.Column;
import org.eclipse.emf.teneo.annotations.pannotation.PAnnotation;
import org.eclipse.emf.teneo.annotations.processing.ProcessingException;
-import org.eclipse.emf.teneo.annotations.util.EcoreDataTypes;
import org.eclipse.emf.teneo.simpledom.Element;
+import org.eclipse.emf.teneo.util.EcoreDataTypes;
/**
* Base class for all mapping classes. Provides access to the hbmcontext.
diff --git a/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/BasicMapper.java b/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/BasicMapper.java
index e6c771009..c8236351a 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/BasicMapper.java
+++ b/plugins/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/mapper/BasicMapper.java
@@ -12,7 +12,7 @@
* Davide Marchignoli
* </copyright>
*
- * $Id: BasicMapper.java,v 1.7 2006/09/22 05:21:48 mtaal Exp $
+ * $Id: BasicMapper.java,v 1.8 2006/10/03 09:50:08 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.mapper;
@@ -38,11 +38,11 @@ import org.eclipse.emf.teneo.annotations.processing.BasicProcessor;
import org.eclipse.emf.teneo.annotations.processing.ProcessingException;
import org.eclipse.emf.teneo.annotations.processing.TransientProcessor;
import org.eclipse.emf.teneo.annotations.processing.VersionProcessor;
-import org.eclipse.emf.teneo.annotations.util.EcoreDataTypes;
import org.eclipse.emf.teneo.hibernate.hbmodel.HbAnnotatedEAttribute;
import org.eclipse.emf.teneo.hibernate.mapping.DynamicENumUserType;
import org.eclipse.emf.teneo.hibernate.mapping.ENumUserType;
import org.eclipse.emf.teneo.simpledom.Element;
+import org.eclipse.emf.teneo.util.EcoreDataTypes;
/**
* Maps a basic element to its mapping Context.
diff --git a/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/util/EcoreDataTypes.java b/plugins/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/util/EcoreDataTypes.java
index bb23a2eff..81f051d9a 100644
--- a/plugins/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/util/EcoreDataTypes.java
+++ b/plugins/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/util/EcoreDataTypes.java
@@ -12,10 +12,10 @@
* Davide Marchignoli
* </copyright>
*
- * $Id: EcoreDataTypes.java,v 1.2 2006/07/04 21:56:30 mtaal Exp $
+ * $Id: EcoreDataTypes.java,v 1.1 2006/10/03 09:50:04 mtaal Exp $
*/
-package org.eclipse.emf.teneo.annotations.util;
+package org.eclipse.emf.teneo.util;
import java.util.Arrays;
import java.util.Collections;

Back to the top