The namespace fix would go into endless loop if you left the ; off the end of the...
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / wizards / SQLPage.java
1 package com.quantum.wizards;
2
3 import com.quantum.sql.SQLResultSetResults;
4
5 import org.eclipse.jface.wizard.IWizardPage;
6
7 public interface SQLPage extends IWizardPage {
8         public void init(SQLResultSetResults results, SQLResultSetResults.Row row);
9         public boolean performFinish();
10 }