Overrides parent to return dummy wizard container
return new IWizardContainer() {
public IWizardPage getCurrentPage() {
return null;
}
public Shell getShell() {
return null;
}
public void showPage(IWizardPage page) {
// pass
}
public void updateButtons() {
// pass
}
public void updateMessage() {
// pass
}
public void updateTitleBar() {
// pass
}
public void updateWindowTitle() {
// pass
}
/**
* Executes runnable on current thread
*/
public void run(boolean fork, boolean cancelable,
IRunnableWithProgress runnable)
throws InvocationTargetException, InterruptedException {
runnable.run(new NullProgressMonitor());
}
};