MCPcopy Index your code
hub / github.com/apache/tomcat / loadClass

Method loadClass

java/org/apache/jasper/servlet/JasperLoader.java:52–55  ·  view source on GitHub ↗

Load the class with the specified name. This method searches for classes in the same manner as loadClass(String, boolean) with false as the second argument. @param name Name of the class to be loaded @exception ClassNotFoundException if the class was not found

(String name)

Source from the content-addressed store, hash-verified

50 * @exception ClassNotFoundException if the class was not found
51 */
52 @Override
53 public Class<?> loadClass(String name) throws ClassNotFoundException {
54 return loadClass(name, false);
55 }
56
57 /**
58 * Load the class with the specified name, searching using the following algorithm until it finds and returns the

Callers 15

loadMethod · 0.45
createTagInfoMethod · 0.45
createValidatorMethod · 0.45
initMethod · 0.45
parseCustomActionMethod · 0.45
toClassMethod · 0.45
getBeanTypeMethod · 0.45
isPackageMethod · 0.45
createInstanceMethod · 0.45
createInstanceMethod · 0.45
parseCustomTagMethod · 0.45
visitMethod · 0.45

Calls 4

getParentMethod · 0.65
resolveClassMethod · 0.45
startsWithMethod · 0.45
findClassMethod · 0.45

Tested by

no test coverage detected