Examples of VersionSequenceDTO


Examples of org.fusesource.ide.fabric8.core.dto.VersionSequenceDTO

  @Override
  public void run() {
    String defaultValue = "";
    VersionDTO latestVersion = oldVersionSupplier.get();
    if (latestVersion != null) {
      VersionSequenceDTO next = latestVersion.getVersionSequence().next();
      while (next != null && getVersionNode(next.getName()) != null) {
        next = next.next();
      }
      if (next != null) {
        defaultValue = next.getName();
      }
    }
    InputDialog dialog = new InputDialog(Shells.getShell(), Messages.createVersionDialogTitle,
        Messages.createVersionDialogMessage, defaultValue, null);
    int result = dialog.open();
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.