Removes a child of the current node. @param child the child to remove @return true if the param was a child of the current node
(Node child)
| 173 | * @return <code>true</code> if the param was a child of the current node |
| 174 | */ |
| 175 | public boolean remove(Node child) { |
| 176 | child.setParent(null); |
| 177 | return getParentList(this).remove(child); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Creates a new node as a child of the current node. |
nothing calls this directly
no test coverage detected