Creates a new Node named name and if a parent is supplied, adds the newly created node as a child of the parent. @param parent the parent node or null if no parent @param name the name of the node
(Node parent, Object name)
| 93 | * @param name the name of the node |
| 94 | */ |
| 95 | public Node(Node parent, Object name) { |
| 96 | this(parent, name, new NodeList()); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Creates a new Node named <code>name</code> with value <code>value</code> and |
nothing calls this directly
no test coverage detected