Package net.sf.myway.edit.ui.wizards

Examples of net.sf.myway.edit.ui.wizards.NewRegionWizard


  private void makeActions() {
    _newRegionAction = new Action() {
      @Override
      public void run() {
        final NewRegionWizard w = new NewRegionWizard();
        w.init(MapsAndRegionsView.this.getSite().getWorkbenchWindow().getWorkbench(),
          (IStructuredSelection) getViewer().getSelection());
        final WizardDialog dialog = new WizardDialog(MapsAndRegionsView.this.getSite()
          .getShell(), w);
        dialog.create();
        dialog.open();
View Full Code Here

TOP

Related Classes of net.sf.myway.edit.ui.wizards.NewRegionWizard

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.