Returns the number of child objects
()
| 100 | /** Returns the number of child objects */ |
| 101 | |
| 102 | public int getChildCount() { |
| 103 | return children == null ? 0 : children.size(); |
| 104 | } |
| 105 | |
| 106 | /** returns the element at the given index. If the node at the |
| 107 | given index is a text node, null is returned */ |
no test coverage detected