MCPcopy Index your code
hub / github.com/careercup/ctci / getFullPath

Method getFullPath

java/Chapter 8/Question8_9/Entry.java:25–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

23 public abstract int size();
24
25 public String getFullPath() {
26 if (parent == null) {
27 return name;
28 } else {
29 return parent.getFullPath() + "/" + name;
30 }
31 }
32
33 public long getCreationTime() {
34 return created;

Callers 1

mainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected