MCPcopy Create free account
hub / github.com/ReadyTalk/avian / getResources

Method getResources

classpath/java/lang/ClassLoader.java:191–195  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

189 }
190
191 public Enumeration<URL> getResources(String name)
192 throws IOException {
193 Collection<URL> resources = collectResources(name);
194 return Collections.enumeration(resources);
195 }
196
197 private Collection<URL> collectResources(String name) {
198 Collection<URL> urls = parent != null ? parent.collectResources(name) : new ArrayList<URL>(5);

Callers 3

mainMethod · 0.95
getResourcesMethod · 0.95
getSystemResourcesMethod · 0.45

Calls 2

collectResourcesMethod · 0.95
enumerationMethod · 0.95

Tested by 1

mainMethod · 0.76