@webref xml:method @brief Removes the specified child
(XML kid)
| 591 | * @brief Removes the specified child |
| 592 | */ |
| 593 | public void removeChild(XML kid) { |
| 594 | node.removeChild(kid.node); |
| 595 | children = null; // TODO not efficient |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Removes whitespace nodes. |