MCPcopy Index your code
hub / github.com/processing/processing / appendChild

Method appendChild

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

Internal handler to add the node structure.

(Node newNode)

Source from the content-addressed store, hash-verified

577
578 /** Internal handler to add the node structure. */
579 protected XML appendChild(Node newNode) {
580 node.appendChild(newNode);
581 XML newbie = new XML(this, newNode);
582 if (children != null) {
583 children = (XML[]) PApplet.concat(children, new XML[] { newbie });
584 }
585 return newbie;
586 }
587
588
589 /**

Callers 2

addChildMethod · 0.95
imageioDPIMethod · 0.80

Calls 1

concatMethod · 0.95

Tested by

no test coverage detected