Examples of NewS3DWizard


Examples of org.xvr.xvrengine.wizard.NewS3DWizard

public class NewS3D extends AbstractHandler {

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    NewS3DWizard wizard = new NewS3DWizard();
   
    IStructuredSelection selection = XVRUtils.getSelectionFromEvent(event);
    if(selection == null)
      throw new ExecutionException("Empty selection");

    wizard.init(HandlerUtil.getActiveWorkbenchWindow(event).getWorkbench(), selection);
    WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
    dialog.open();
    return null;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.