public Point getExtent() {
return new Point(-1, -1);
}
public IWizard getWizard() {
IRunDescriptionExportWizard wizard = wizardRef.get();
if (wizard != null)
return wizard;
try {
wizard = (IRunDescriptionExportWizard) config.createExecutableExtension("class");
wizard.setBndModel(model, bndProject);
if (!wizardRef.compareAndSet(null, wizard))
wizard = wizardRef.get();
return wizard;