(Node node)
| 145 | |
| 146 | |
| 147 | private void printChildren(Node node) { |
| 148 | NodeList children = node.getChildNodes(); |
| 149 | if (children != null) { |
| 150 | int len = children.getLength(); |
| 151 | for (int i = 0; i < len; i++) { |
| 152 | print(children.item(i)); |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | |
| 158 | /** |