Package org.cloudfoundry.ide.eclipse.server.ui.internal.wizards

Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.wizards.CloudUrlWizard


   * @return Cloud URL if successfully prompted and entered by user. Null
   * otherwise
   */
  protected CloudServerURL promptForCloudURL(String serverID, Shell shell, List<CloudServerURL> allURLs,
      String existingURL, String existingName) {
    CloudUrlWizard wizard = new CloudUrlWizard(serverID, allURLs, existingURL, existingName);
    WizardDialog dialog = new WizardDialog(shell, wizard);
    if (dialog.open() == Dialog.OK) {
      return wizard.getCloudUrl();
    }
    return null;

  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.ui.internal.wizards.CloudUrlWizard

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.