Examples of IClassArtifactReference


Examples of net.sourceforge.javautil.classloader.resolver.IClassArtifactReference

        else
          throw new CoersionException("Invalid package reference: " + original);
      }
    } else if (target == String.class) {
      if (original instanceof IClassArtifactReference) {
        IClassArtifactReference ref = (IClassArtifactReference) original;
        StringBuffer sb = new StringBuffer();
       
        sb.append(ref.getGroupId()).append(":").append(ref.getArtifactId()).append(":");
       
        if (ref instanceof IClassPackageReference) {
          IClassPackageReference pref = (IClassPackageReference) ref;
          sb.append(":").append(pref.getVersion().toVersionString());
       
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.