Package cpw.mods.fml.common.versioning

Examples of cpw.mods.fml.common.versioning.ArtifactVersion.compareTo()


      ArtifactVersion upperVersion = null;
      if (upperBound.length() > 0) {
        upperVersion = getArtifactVersion(label, upperBound);
      }

      if (upperVersion != null & lowerVersion != null && upperVersion.compareTo(lowerVersion) < 0) {
        throw new InvalidVersionSpecificationException("Range defies version ordering: " + spec);
      }

      restriction = new Restriction(lowerVersion, lowerBoundInclusive, upperVersion, upperBoundInclusive);
    }
View Full Code Here


                    ArtifactVersion current = new DefaultArtifactVersion(getVersion());

                    if (rec != null)
                    {
                        ArtifactVersion recommended = new DefaultArtifactVersion(rec);
                        int diff = recommended.compareTo(current);

                        if (diff == 0)
                            status = UP_TO_DATE;
                        else if (diff < 0)
                        {
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.