MCPcopy Create free account
hub / github.com/casidiablo/persistence / toString

Method toString

src/main/java/com/codeslap/persistence/Node.java:114–121  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

112 }
113
114 @Override
115 public String toString() {
116 return "Node{" +
117 "content=" + mContent +
118 ", mParent=" + (mParent == null ? "I'm the root" : mParent.mContent) +
119 ", children=" + children +
120 '}';
121 }
122
123 void removeChild(Node child) {
124 children.remove(child);

Callers 14

executeMethod · 0.45
AssetsImporterClass · 0.45
storeCollectionMethod · 0.45
getBeanFromCursorMethod · 0.45
executeMethod · 0.45
getWhereMethod · 0.45
joinMethod · 0.45
normalizeMethod · 0.45
getColumnNameMethod · 0.45
getHexMethod · 0.45
getCursorFindAllWhereMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected