Serializes the specified node. @param node node to be serialized @throws IOException I/O exception
(final XNode node)
| 190 | * @throws IOException I/O exception |
| 191 | */ |
| 192 | protected void node(final XNode node) throws IOException { |
| 193 | if(node instanceof final DBNode dbnode) { |
| 194 | node(dbnode); |
| 195 | } else { |
| 196 | node((FNode) node); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Opens an element. |