Package com.puppetlabs.geppetto.semver

Examples of com.puppetlabs.geppetto.semver.Version


    StringBuilder bld = new StringBuilder();
    ModuleName fullName = getFullName(module);
    if(fullName != null)
      fullName.toString(bld);

    Version version = getModuleVersion(module);
    if(version != null) {
      bld.append(' ');
      version.toString(bld);
    }
    return bld.toString();
  }
View Full Code Here

TOP

Related Classes of com.puppetlabs.geppetto.semver.Version

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.