Creates a new node as a child of the current node. @param name the name of the new node @param attributes the attributes of the new node @return the newly created Node
(Object name, Map attributes)
| 185 | * @return the newly created <code>Node</code> |
| 186 | */ |
| 187 | public Node appendNode(Object name, Map attributes) { |
| 188 | return new Node(this, name, attributes); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Creates a new node as a child of the current node. |
no outgoing calls
no test coverage detected