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

Method addChild

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

@webref xml:method @brief Appends a new child to the element

(String tag)

Source from the content-addressed store, hash-verified

562 * @brief Appends a new child to the element
563 */
564 public XML addChild(String tag) {
565 Document document = node.getOwnerDocument();
566 Node newChild = document.createElement(tag);
567 return appendChild(newChild);
568 }
569
570
571 public XML addChild(XML child) {

Callers 1

exportApplicationMethod · 0.95

Calls 2

appendChildMethod · 0.95
getNativeMethod · 0.65

Tested by

no test coverage detected