Author: akazakov
Date: 2007-09-26 12:57:31 -0400 (Wed, 26 Sep 2007)
New Revision: 3818
Added:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/eclipse/launch/
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/eclipse/launch/SeamUtil.java
Removed:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/SeamUtil.java
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/.classpath
trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
Log:
http://jira.jboss.com/jira/browse/JBIDE-769 I moved SeamUtil from .eclipse.console to
.eclipse plugin
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/.classpath
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/.classpath 2007-09-26 15:22:03 UTC
(rev 3817)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/.classpath 2007-09-26 16:57:31 UTC
(rev 3818)
@@ -8,7 +8,7 @@
<classpathentry exported="true" kind="lib"
path="lib/hibernate/concurrent-1.3.2.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/connector.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/dom4j-1.6.1.jar"/>
- <classpathentry exported="true" kind="lib"
path="lib/hibernate/hibernate3.jar" sourcepath="/hibernate-3.2"/>
+ <classpathentry exported="true" kind="lib"
path="lib/hibernate/hibernate3.jar" sourcepath="/Hibernate3"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/jboss-cache.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/jboss-common.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/jboss-jmx.jar"/>
@@ -20,7 +20,7 @@
<classpathentry exported="true" kind="lib"
path="lib/hibernate/oscache-2.1.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/proxool-0.8.3.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/hibernate/swarmcache-1.0rc2.jar"/>
- <classpathentry exported="true" kind="lib"
path="lib/tools/hibernate-tools.jar"
sourcepath="/hibernateext.tools"/>
+ <classpathentry exported="true" kind="lib"
path="lib/tools/hibernate-tools.jar"
sourcepath="/HibernateExt/tools/src/java"/>
<classpathentry exported="true" kind="lib"
path="lib/tools/freemarker.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/bsh-core-2.0b4.jar"/>
<classpathentry exported="true" kind="lib"
path="lib/annotations/ejb3-persistence.jar"/>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2007-09-26
15:22:03 UTC (rev 3817)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2007-09-26
16:57:31 UTC (rev 3818)
@@ -276,6 +276,7 @@
org.hibernate.dialect.function,
org.hibernate.dialect.lock,
org.hibernate.eclipse,
+ org.hibernate.eclipse.launch,
org.hibernate.eclipse.logging,
org.hibernate.eclipse.logging.xpl,
org.hibernate.ejb,
Added:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/eclipse/launch/SeamUtil.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/eclipse/launch/SeamUtil.java
(rev 0)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/eclipse/launch/SeamUtil.java 2007-09-26
16:57:31 UTC (rev 3818)
@@ -0,0 +1,21 @@
+package org.hibernate.eclipse.launch;
+
+import java.util.HashSet;
+import java.util.Set;
+
+public class SeamUtil {
+
+ public String lower(String name)
+ {
+ return name.substring(0, 1).toLowerCase() + name.substring(1);
+ }
+ public String upper(String name)
+ {
+ return name.substring(0, 1).toUpperCase() + name.substring(1);
+ }
+ public Set set()
+ {
+ return new HashSet();
+ }
+
+}
Deleted:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/SeamUtil.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/SeamUtil.java 2007-09-26
15:22:03 UTC (rev 3817)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/SeamUtil.java 2007-09-26
16:57:31 UTC (rev 3818)
@@ -1,21 +0,0 @@
-package org.hibernate.eclipse.launch;
-
-import java.util.HashSet;
-import java.util.Set;
-
-public class SeamUtil {
-
- public String lower(String name)
- {
- return name.substring(0, 1).toLowerCase() + name.substring(1);
- }
- public String upper(String name)
- {
- return name.substring(0, 1).toUpperCase() + name.substring(1);
- }
- public Set set()
- {
- return new HashSet();
- }
-
-}