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
()
| 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 | } |
no test coverage detected