8687888990919293
className.append(";"); try { return Class.forName(className.toString()); } catch (ClassNotFoundException e) { throw new TypeNotFoundException(classType, e); } }
5960616263646566
public static Class getClassFor(String className) { try { return ClassUtil.class.getClassLoader().loadClass(className); } catch (ClassNotFoundException e) { throw new TypeNotFoundException(e); } }