return null;
}
private Class getClassForName(String className) {
try {
final OsgiRegistry osgiRegistry = ReflectionHelper.getOsgiRegistryInstance();
if (osgiRegistry != null) {
return osgiRegistry.classForNameWithException(className);
} else {
return ReflectionHelper.classForNameWithException(className, classloader);
}
} catch (ClassNotFoundException ex) {
String s = "A class file of the class name, " +