MCPcopy Create free account
hub / github.com/annmuor/jnode / toString

Method toString

jnode-core/src/jnode/dto/Jscript.java:52–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

50 this.content = content;
51 }
52 @Override
53 public String toString() {
54 StringBuilder builder = new StringBuilder();
55 builder.append("Jscript [");
56 if (id != null) {
57 builder.append("id=");
58 builder.append(id);
59 builder.append(", ");
60 }
61 if (content != null) {
62 builder.append("content=");
63 builder.append(content);
64 }
65 builder.append("]");
66 return builder.toString();
67 }
68
69}

Callers

nothing calls this directly

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected