Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2006-11-13 21:29:37 +0000
committermtaal2006-11-13 21:29:37 +0000
commitd4fe98ec28cafd66068e97e92c6b0604b501aa20 (patch)
treef1f9fc333722719d4ead8a0e9342d376221d3bd3
parentd0f4d276c87079dc0caf51a094c7c08054f7ca2d (diff)
downloadorg.eclipse.emf.teneo-d4fe98ec28cafd66068e97e92c6b0604b501aa20.tar.gz
org.eclipse.emf.teneo-d4fe98ec28cafd66068e97e92c6b0604b501aa20.tar.xz
org.eclipse.emf.teneo-d4fe98ec28cafd66068e97e92c6b0604b501aa20.zip
Added jars on build pathbuild_200611131642
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate.mapper/.cvsignore1
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate.mapper/META-INF/MANIFEST.MF2
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate.mapper/build.properties2
-rw-r--r--plugins/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/util/HibernateDefaultAnnotator.java3
4 files changed, 6 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.teneo.hibernate.mapper/.cvsignore b/plugins/org.eclipse.emf.teneo.hibernate.mapper/.cvsignore
index 617165710..7ce3b4d3f 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate.mapper/.cvsignore
+++ b/plugins/org.eclipse.emf.teneo.hibernate.mapper/.cvsignore
@@ -1 +1,2 @@
bin*
+*.jar
diff --git a/plugins/org.eclipse.emf.teneo.hibernate.mapper/META-INF/MANIFEST.MF b/plugins/org.eclipse.emf.teneo.hibernate.mapper/META-INF/MANIFEST.MF
index 6aeea8507..85bc63e72 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate.mapper/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.emf.teneo.hibernate.mapper/META-INF/MANIFEST.MF
@@ -4,6 +4,7 @@ Bundle-Name: %Plugin.name
Bundle-SymbolicName: org.eclipse.emf.teneo.hibernate.mapper
Bundle-Version: 0.7.5.qualifier
Bundle-Localization: plugin
+Eclipse-BuddyPolicy: dependent
Bundle-Vendor: %Plugin.providerName
Export-Package: org.eclipse.emf.teneo.hibernate,
org.eclipse.emf.teneo.hibernate.hbannotation,
@@ -17,4 +18,3 @@ Require-Bundle: org.eclipse.emf.teneo,
org.eclipse.emf.teneo.annotations,
org.eclipse.emf.teneo.libraries,
org.eclipse.emf.ecore
-Import-Package: org.hibernate.type
diff --git a/plugins/org.eclipse.emf.teneo.hibernate.mapper/build.properties b/plugins/org.eclipse.emf.teneo.hibernate.mapper/build.properties
index 5a5dda76f..06536da13 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate.mapper/build.properties
+++ b/plugins/org.eclipse.emf.teneo.hibernate.mapper/build.properties
@@ -12,3 +12,5 @@ bin.includes = plugin.properties,\
src.includes = about.html,\
epl-v10.html,\
copyright.txt
+jars.extra.classpath = dom4j-1.6.1.jar,\
+ hibernate3.jar
diff --git a/plugins/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/util/HibernateDefaultAnnotator.java b/plugins/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/util/HibernateDefaultAnnotator.java
index 18c75ac9d..6f5a56e0d 100644
--- a/plugins/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/util/HibernateDefaultAnnotator.java
+++ b/plugins/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/util/HibernateDefaultAnnotator.java
@@ -12,7 +12,7 @@
* Michael Kanaley, TIBCO Software Inc., custom type handling
* </copyright>
*
- * $Id: HibernateDefaultAnnotator.java,v 1.2 2006/11/13 14:53:00 mtaal Exp $
+ * $Id: HibernateDefaultAnnotator.java,v 1.3 2006/11/13 21:29:37 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.hbannotation.util;
@@ -221,6 +221,7 @@ public class HibernateDefaultAnnotator extends DefaultAnnotator {
// get rid of the [] at the end
final String primType = typeClassName.substring(0, typeClassName.length() - 2);
// check if hb supports it
+ // no dots is primitve
if (TypeFactory.basic(primType) != null) {
return null; // if so let hb do it
}

Back to the top