All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.amygdalum.testrecorder.dynamiccompile.CompilationUnit Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package net.amygdalum.testrecorder.dynamiccompile;

public class CompilationUnit {

	private ClassLoader loader;
	private String name;
	private String pkg;

	public CompilationUnit(ClassLoader loader, String pkg, String name) {
		this.loader = loader;
		this.name = name;
		this.pkg = pkg;
	}
	
	public ClassLoader getLoader() {
		return loader;
	}
	
	public String getName() {
		return name;
	}
	
	public String getFullQualifiedName() {
		return pkg + '.' + name;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy