Examples of PartChangeEvent


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

                    NLS.bind(Messages.ERROR_ROUTE_IN_USE, rt.getName()), IStatus.ERROR);
              }
            }
          }
          if (errorInUse != null) {
            event = new PartChangeEvent(event.getData(), errorInUse, event.getSource());
          }

        }

      }
View Full Code Here

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

      catch (MalformedURLException e) {
        status = CloudFoundryPlugin.getErrorStatus(Messages.COMMONTXT_ENTER_VALID_URL);
      }
    }

    handleChange(new PartChangeEvent(buildpack, status, CloudUIEvent.BUILD_PACK_URL));

  }
View Full Code Here

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

    }
    else if (nameExists(serverName)) {
      status = CloudFoundryPlugin.getErrorStatus(Messages.ERROR_SERVER_NAME_ALREADY_EXISTS);
    }

    serverEventHandler.handleChange(new PartChangeEvent(null, status, new EventSource<CloneServerPage>(this),
        ValidationEvents.VALIDATION));
  }
View Full Code Here

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

      // Set an invalid memory so next time page opens, it restores a
      // valid value
      descriptor.getDeploymentInfo().setMemory(-1);
      status = CloudFoundryPlugin.getErrorStatus(Messages.ERROR_INVALID_MEMORY);
    }
    handleChange(new PartChangeEvent(memoryVal, status, CloudUIEvent.MEMORY));
  }
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.