initial quantum version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / wizards / ExportTorqueWizard.java
1 package com.quantum.wizards;
2
3 import org.eclipse.jface.viewers.IStructuredSelection;
4 import org.eclipse.jface.wizard.Wizard;
5 import org.eclipse.ui.IExportWizard;
6 import org.eclipse.ui.IWorkbench;
7
8 /**
9  * @author BC
10  */
11 public class ExportTorqueWizard extends Wizard implements IExportWizard {
12
13     public boolean performFinish() {
14         return false;
15     }
16
17     public void init(IWorkbench workbench, IStructuredSelection selection) {
18     }
19
20 }