Reads the 8 byte header information and populates the options and recordId records. @param data the byte array to read from @param offset the offset to start reading from @return the number of bytes remaining in this record. This may incl
( byte[] data, int offset )
| 73 | * may include the children if this is a container. |
| 74 | */ |
| 75 | protected int readHeader( byte[] data, int offset ) { |
| 76 | EscherRecordHeader header = EscherRecordHeader.readHeader(data, offset); |
| 77 | _options = header.getOptions(); |
| 78 | _recordId = header.getRecordId(); |
| 79 | return header.getRemainingBytes(); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Determine whether this is a container record by inspecting the option |
no test coverage detected