(PrintWriter output)
| 290 | // Sends this object and its kids to a Writer with an indent of 2 spaces, |
| 291 | // including the declaration at the top so that the output will be valid XML. |
| 292 | public boolean write(PrintWriter output) { |
| 293 | output.print(format(2)); |
| 294 | output.flush(); |
| 295 | return true; |
| 296 | } |
| 297 | |
| 298 | |
| 299 | /** |