@webref xml:method @brief Appends a new child to the element
(String tag)
| 562 | * @brief Appends a new child to the element |
| 563 | */ |
| 564 | public XML addChild(String tag) { |
| 565 | Document document = node.getOwnerDocument(); |
| 566 | Node newChild = document.createElement(tag); |
| 567 | return appendChild(newChild); |
| 568 | } |
| 569 | |
| 570 | |
| 571 | public XML addChild(XML child) { |
no test coverage detected