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