MCPcopy Index your code
hub / github.com/apache/groovy / append

Method append

src/main/java/groovy/util/Node.java:164–167  ·  view source on GitHub ↗

Appends a child to the current node. @param child the child to append @return true

(Node child)

Source from the content-addressed store, hash-verified

162 * @return <code>true</code>
163 */
164 public boolean append(Node child) {
165 child.setParent(this);
166 return getParentList(this).add(child);
167 }
168
169 /**
170 * Removes a child of the current node.

Callers 15

padNumberMethod · 0.45
writeFrequenciesMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
padNumberMethod · 0.45
toStringMethod · 0.45
mainMethod · 0.45
assertScriptMethod · 0.45
buildErrorMessageMethod · 0.45
doCallMethod · 0.45

Calls 3

getParentListMethod · 0.95
setParentMethod · 0.65
addMethod · 0.65