(final DataOutput out)
| 54 | } |
| 55 | |
| 56 | @Override |
| 57 | public final void write(final DataOutput out) throws IOException { |
| 58 | final ArrayOutput ao = new ArrayOutput(); |
| 59 | Serializer.get(ao).serialize(this); |
| 60 | out.writeToken(ao.finish()); |
| 61 | } |
| 62 | |
| 63 | @Override |
| 64 | public final boolean bool(final InputInfo ii) { |
nothing calls this directly
no test coverage detected