Appends a child to the current node. @param child the child to append @return true
(Node child)
| 162 | * @return <code>true</code> |
| 163 | */ |
| 164 | public boolean append(Node child) { |
| 165 | child.setParent(this); |
| 166 | return getParentList(this).add(child); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Removes a child of the current node. |