Examples of WizardPartChangeEvent


Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.WizardPartChangeEvent

        public void modifyText(ModifyEvent e) {
          appName = nameText.getText();
          // If first time initialising, dont update the wizard
          // buttons as the may not be available to update yet
          boolean updateButtons = true;
          notifyChange(new WizardPartChangeEvent(appName, getUpdateNameStatus(),
              CloudUIEvent.APP_NAME_CHANGE_EVENT, updateButtons));
        }
      });

      // Set the app name after adding the listener to fire event
View Full Code Here

Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.WizardPartChangeEvent

      // Don't show the error if the application does not require a URL
      // and the URL is empty
      if (ValueValidationUtil.isEmpty(urlVal) && !requiresUrl()) {
        status = Status.OK_STATUS;
      }
      event = new WizardPartChangeEvent(eventData, status, event.getSource(), true);

    }
    else if (source == CloudUIEvent.APP_NAME_CHANGE_EVENT) {
      String value = (String) event.getData();
      updateApplicationNameInDescriptor(value);
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.