Package org.eclipse.dltk.ui.dialogs

Examples of org.eclipse.dltk.ui.dialogs.ProjectSelectionDialog.open()


      } catch (ModelException e) {
        // ignore
      }
      ProjectSelectionDialog dialog = new ProjectSelectionDialog(
          getShell(), projectsWithSpecifics);
      if (dialog.open() == Window.OK) {
        IScriptProject res = (IScriptProject) dialog.getFirstResult();
        openProjectProperties(res.getProject(), data);
      }
    }
  }
View Full Code Here


      } catch (CoreException e) {
        // ignore
      }
      ProjectSelectionDialog dialog = new ProjectSelectionDialog(
          getShell(), projectsWithSpecifics);
      if (dialog.open() == Window.OK) {
        ScriptProject result = (ScriptProject) dialog.getFirstResult();
        openProjectProperties(result.getProject(), data);
      }
    }
  }
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.