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

Method checkChildren

core/src/processing/data/XML.java:357–366  ·  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

355 * Internal function; not included in reference.
356 */
357 protected void checkChildren() {
358 if (children == null) {
359 NodeList kids = node.getChildNodes();
360 int childCount = kids.getLength();
361 children = new XML[childCount];
362 for (int i = 0; i < childCount; i++) {
363 children[i] = new XML(this, kids.item(i));
364 }
365 }
366 }
367
368
369 /**

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