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

Method getChildren

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

Returns an array containing all the child elements. @webref xml:method @brief Returns an array containing all child elements

()

Source from the content-addressed store, hash-verified

424 * @brief Returns an array containing all child elements
425 */
426 public XML[] getChildren() {
427// NodeList children = node.getChildNodes();
428// int childCount = children.getLength();
429// XMLElement[] kids = new XMLElement[childCount];
430// for (int i = 0; i < childCount; i++) {
431// Node kid = children.item(i);
432// kids[i] = new XMLElement(this, kid);
433// }
434// return kids;
435 checkChildren();
436 return children;
437 }
438
439
440 /**

Callers 4

getChildrenRecursiveMethod · 0.95
odsParseMethod · 0.95
odsParseSheetMethod · 0.95
startMethod · 0.45

Calls 9

checkChildrenMethod · 0.95
getChildrenRecursiveMethod · 0.95
splitMethod · 0.95
getChildMethod · 0.95
getChildCountMethod · 0.95
getNameMethod · 0.95
subsetMethod · 0.95
parseIntMethod · 0.80
equalsMethod · 0.45

Tested by

no test coverage detected