public ClassInfo(String className, URLClassLoader classLoader)
throws ClassNotFoundException {
super();
this.className = className;
this.classLoader = classLoader;
this.repository = new ClassLoaderRepository(classLoader);
localRepository = true;
javaClass = this.repository.loadClass(className);
}