
pluginloader.ClassInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-plugins Show documentation
Show all versions of java-plugins Show documentation
Library for adding plugin support to your java application
The newest version!
package pluginloader;
public class ClassInfo {
private final String className;
private final String packageName;
public ClassInfo(String className, String packageName) {
this.className = className;
this.packageName = packageName;
}
public String getFullQualifiedClassName(){
String packagePath = "";
if (packageName != null){
packagePath = String.format("%s.", packageName);
}
return String.format("%s%s", packagePath, className);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy