private static java.lang.Class | forceInit(java.lang.Class klass)Forces the initialization of the class pertaining to the specified
Class object. This method does nothing if the class is already
initialized prior to invocation.
try {
Class.forName(klass.getName(), true, klass.getClassLoader());
} catch (ClassNotFoundException e) {
throw new AssertionError(e); // Can't happen
}
return klass;
|