MCPcopy Index your code
hub / github.com/benfry/processing4 / appendChild

Method appendChild

core/src/processing/data/XML.java:598–605  ·  view source on GitHub ↗

Internal handler to add the node structure.

(Node newNode)

Source from the content-addressed store, hash-verified

596
597 /** Internal handler to add the node structure. */
598 protected XML appendChild(Node newNode) {
599 node.appendChild(newNode);
600 XML newbie = new XML(this, newNode);
601 if (children != null) {
602 children = (XML[]) PApplet.concat(children, new XML[] { newbie });
603 }
604 return newbie;
605 }
606
607
608 /**

Callers 2

addChildMethod · 0.95
imageioDPIMethod · 0.80

Calls 1

concatMethod · 0.95

Tested by

no test coverage detected