MCPcopy Create free account
hub / github.com/GateNLP/gate-core / getChildren

Method getChildren

src/main/java/gate/util/GateClassLoader.java:435–439  ·  view source on GitHub ↗

Get the child classloaders in creation order. Note that you shouldn't have any need to access the child classloaders. Holding references is very likely to lead to a memory leak as the plugins will no longer be disposable. YOU HAVE BEEN WARNED! @return the child classloaders in creation order

()

Source from the content-addressed store, hash-verified

433 * @return the child classloaders in creation order
434 */
435 public List<GateClassLoader> getChildren() {
436 synchronized(childClassLoaders) {
437 return new ArrayList<GateClassLoader>(childClassLoaders.values());
438 }
439 }
440}

Callers 12

parseCreoleMethod · 0.80
addJarsToClassLoaderMethod · 0.80
findResourceElementsMethod · 0.80
processAnnotationsMethod · 0.80
workWithJDomMethod · 0.80
fromXMLMethod · 0.80
suggestMethod · 0.80
prettyPrintMethod · 0.80

Calls 1

valuesMethod · 0.45

Tested by

no test coverage detected