Honey, can you just check on the kids? Thanks. Internal function; not included in reference.
()
| 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 | /** |
no outgoing calls
no test coverage detected