package net.sourceforge.phpdt.sql.wizards;
-import net.sourceforge.phpdt.sql.IConstants;
+import org.eclipse.jface.wizard.IWizardPage;
+
import net.sourceforge.phpdt.sql.sql.TableRow;
import net.sourceforge.phpdt.sql.view.tableview.TableAdapter;
-import org.eclipse.jface.wizard.IWizardPage;
-
-public interface SQLPage extends IWizardPage, IConstants {
+public interface SQLPage extends IWizardPage {
+ public final static boolean DEBUG = false;
public void init(TableRow row, TableAdapter adapter);
public boolean performFinish();
}
-
\ No newline at end of file