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
1 package net.sourceforge.phpeclipse.wizards.actions.metadata;
2
3 import com.quantum.model.Column;
4 import com.quantum.sql.SQLResultSetResults;
5
6 import org.eclipse.jface.wizard.IWizardPage;
7
8 public interface SQLPage extends IWizardPage {
9         public void init(Row row, Column[] columns);
10         public boolean performFinish();
11 }