MCPcopy
hub / github.com/java-decompiler/jd-gui / Container

Interface Container

api/src/main/java/org/jd/gui/api/model/Container.java:14–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12import java.util.Collection;
13
14public interface Container {
15 String getType();
16
17 Entry getRoot();
18
19 /**
20 * File or directory
21 */
22 interface Entry {
23 Container getContainer();
24
25 Entry getParent();
26
27 URI getUri();
28
29 String getPath();
30
31 boolean isDirectory();
32
33 long length();
34
35 InputStream getInputStream();
36
37 Collection<Entry> getChildren();
38 }
39}

Callers 16

getTokenMethod · 0.65
getAccessFlagMethod · 0.65
isAFieldMethod · 0.65
getInternalTypeNameMethod · 0.65
getTokenMethod · 0.65
loadMethod · 0.95
updateTreeMethod · 0.95
showMethod · 0.95

Implementers 4

GenericContainerservices/src/main/java/org/jd/gui/mode
DelegatingFilterContainerapp/src/main/java/org/jd/gui/model/con
DelegatedContainerapp/src/main/java/org/jd/gui/model/con
ContainerEntryservices/src/main/java/org/jd/gui/serv

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…