Very ugly start of a first wizard page. Needs a lot of cleanup!
[phpeclipse.git] / net.sourceforge.phpeclipse.wizards / src / net / sourceforge / phpeclipse / wizards / actions / metadata / SQLPage.java
diff --git a/net.sourceforge.phpeclipse.wizards/src/net/sourceforge/phpeclipse/wizards/actions/metadata/SQLPage.java b/net.sourceforge.phpeclipse.wizards/src/net/sourceforge/phpeclipse/wizards/actions/metadata/SQLPage.java
new file mode 100644 (file)
index 0000000..fef2ee1
--- /dev/null
@@ -0,0 +1,11 @@
+package net.sourceforge.phpeclipse.wizards.actions.metadata;
+
+import com.quantum.model.Column;
+import com.quantum.sql.SQLResultSetResults;
+
+import org.eclipse.jface.wizard.IWizardPage;
+
+public interface SQLPage extends IWizardPage {
+       public void init(Row row, Column[] columns);
+       public boolean performFinish();
+}