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

Method checkChildren

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

Honey, can you just check on the kids? Thanks. Internal function; not included in reference.

()

Source from the content-addressed store, hash-verified

363 * Internal function; not included in reference.
364 */
365 protected void checkChildren() {
366 if (children == null) {
367 NodeList kids = node.getChildNodes();
368 int childCount = kids.getLength();
369 children = new XML[childCount];
370 for (int i = 0; i < childCount; i++) {
371 children[i] = new XML(this, kids.item(i));
372 }
373 }
374 }
375
376
377 /**

Callers 5

getChildCountMethod · 0.95
hasChildrenMethod · 0.95
listChildrenMethod · 0.95
getChildrenMethod · 0.95
getChildMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected