{@inheritDoc}
(final String indent, final boolean tagBefore, final PrintWriter printWriter)
| 62 | * {@inheritDoc} |
| 63 | */ |
| 64 | @Override |
| 65 | protected boolean printXml(final String indent, final boolean tagBefore, final PrintWriter printWriter) { |
| 66 | printWriter.print(indent); |
| 67 | printWriter.print("<!--"); |
| 68 | printWriter.print(getData()); |
| 69 | printWriter.print("-->"); |
| 70 | return printChildrenAsXml(indent, true, printWriter); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Returns a simple string representation to facilitate debugging. |
nothing calls this directly
no test coverage detected