[jbosstools-commits] JBoss Tools SVN: r39457 - trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ext.
jbosstools-commits at lists.jboss.org
jbosstools-commits at lists.jboss.org
Tue Mar 13 03:00:26 EDT 2012
Author: dgeraskov
Date: 2012-03-13 03:00:26 -0400 (Tue, 13 Mar 2012)
New Revision: 39457
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ext/HibernateExtension.java
Log:
https://issues.jboss.org/browse/JBIDE-11278
Fix compile error
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ext/HibernateExtension.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ext/HibernateExtension.java 2012-03-13 06:03:51 UTC (rev 39456)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ext/HibernateExtension.java 2012-03-13 07:00:26 UTC (rev 39457)
@@ -10,7 +10,9 @@
******************************************************************************/
package org.hibernate.console.ext;
+import org.hibernate.SessionFactory;
import org.hibernate.console.QueryInputModel;
+import org.hibernate.console.execution.ExecutionContext;
import org.hibernate.console.execution.ExecutionContext.Command;
import org.hibernate.console.preferences.ConsoleConfigurationPreferences;
@@ -29,6 +31,9 @@
public boolean closeSessionFactory();
public boolean reset();
+
+ public String generateSQL(final String query);
+
//TODO do we really need this?
public String getHibernateVersion();
More information about the jbosstools-commits
mailing list