1 2 17 18 19 package org.apache.poi.hssf.record; 20 21 import org.apache.poi.util.LittleEndian; 22 23 31 32 public class BeginRecord 33 extends Record 34 { 35 public static final short sid = 0x1033; 36 37 public BeginRecord() 38 { 39 } 40 41 48 49 public BeginRecord(short id, short size, byte [] data) 50 { 51 super(id, size, data); 52 } 53 54 62 63 public BeginRecord(short id, short size, byte [] data, int offset) 64 { 65 super(id, size, data, offset); 66 } 67 68 protected void validateSid(short id) 69 { 70 if (id != sid) 71 { 72 throw new RecordFormatException("NOT A BEGIN RECORD"); 73 } 74 } 75 76 protected void fillFields(byte [] data, short size, int offset) 77 { 78 } 79 80 public String toString() 81 { 82 StringBuffer buffer = new StringBuffer (); 83 84 buffer.append("[BEGIN]\n"); 85 buffer.append("[/BEGIN]\n"); 86 return buffer.toString(); 87 } 88 89 public int serialize(int offset, byte [] data) 90 { 91 LittleEndian.putShort(data, 0 + offset, sid); 92 LittleEndian.putShort(data, 2 + offset, 93 (( short ) 0)); return getRecordSize(); 95 } 96 97 public int getRecordSize() 98 { 99 return 4; 100 } 101 102 public short getSid() 103 { 104 return this.sid; 105 } 106 } 107 | Popular Tags |