Examples of IEnvironmentUI


Examples of org.eclipse.dltk.ui.environment.IEnvironmentUI

  }

  @Override
  public void changeControlPressed(DialogField field) {
    IEnvironment environment = this.composerProjectWizardFirstPage.getEnvironment();
    IEnvironmentUI environmentUI = (IEnvironmentUI) environment.getAdapter(IEnvironmentUI.class);
    if (environmentUI != null) {
      String selectedDirectory = environmentUI.selectFolder(this.composerProjectWizardFirstPage.getShell());

      if (selectedDirectory != null) {
        DLTKUIPlugin.getDefault().getDialogSettings().put(DIALOGSTORE_LAST_EXTERNAL_LOC, selectedDirectory);
      }
    }
View Full Code Here

Examples of org.eclipse.dltk.ui.environment.IEnvironmentUI

    return environments[localEnv];
  }

  public void changeControlPressed(DialogField field) {
    IEnvironment environment = getEnvironment();
    IEnvironmentUI environmentUI = (IEnvironmentUI) environment
        .getAdapter(IEnvironmentUI.class);
    if (environmentUI != null) {
      String selectedDirectory = environmentUI.selectFolder(shell);

      if (selectedDirectory != null) {
        fLocation.setText(selectedDirectory);
        DLTKUIPlugin.getDefault().getDialogSettings()
            .put(DIALOGSTORE_LAST_EXTERNAL_LOC, selectedDirectory);
View Full Code Here

Examples of org.eclipse.dltk.ui.environment.IEnvironmentUI

      fireEvent();
    }

    public void changeControlPressed(DialogField field) {
      IEnvironment environment = getEnvironment();
      IEnvironmentUI environmentUI = (IEnvironmentUI) environment
          .getAdapter(IEnvironmentUI.class);
      if (environmentUI != null) {
        String selectedDirectory = environmentUI
            .selectFolder(getShell());

        if (selectedDirectory != null) {
          // fLocation.setText(selectedDirectory);
          DLTKUIPlugin
View Full Code Here

Examples of org.eclipse.dltk.ui.environment.IEnvironmentUI

    return environments[localEnv];
  }

  public void changeControlPressed(DialogField field) {
    IEnvironment environment = getEnvironment();
    IEnvironmentUI environmentUI = (IEnvironmentUI) environment
        .getAdapter(IEnvironmentUI.class);
    if (environmentUI != null) {
      String selectedDirectory = environmentUI.selectFolder(shell);

      if (selectedDirectory != null) {
        fLocation.setText(selectedDirectory);
        DLTKUIPlugin.getDefault().getDialogSettings()
            .put(DIALOGSTORE_LAST_EXTERNAL_LOC, selectedDirectory);
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.