(DataOutputStream stream)
| 46 | } |
| 47 | |
| 48 | public void write(DataOutputStream stream) throws IOException { |
| 49 | // write the header |
| 50 | writeHeader(stream); |
| 51 | |
| 52 | // write the fields |
| 53 | writeFields(stream); |
| 54 | |
| 55 | // write the children atoms |
| 56 | writeChildren(stream); |
| 57 | } |
| 58 | |
| 59 | protected int getFieldsSize() { |
| 60 | return 8; |
no test coverage detected