Package org.emftrace.quarc.ui.wizards

Examples of org.emftrace.quarc.ui.wizards.SaveConstraintsWizard


   * @see org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands.ExecutionEvent)
   */
  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    final GSSQuery query = (GSSQuery) UiUtil.getSelectedEObject()
    SaveConstraintsWizard wizard = new SaveConstraintsWizard(query);
    WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), wizard);
    dialog.create();
    dialog.open();
    return null;
  }
View Full Code Here

TOP

Related Classes of org.emftrace.quarc.ui.wizards.SaveConstraintsWizard

Copyright © 2018 www.massapicom. 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.