1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.IntegerHelper; 24 import jxl.biff.WritableRecordData; 25 26 29 class Window1Record extends WritableRecordData 30 { 31 34 private byte[] data; 35 36 39 public Window1Record() 40 { 41 super(Type.WINDOW1); 42 43 data = new byte[] 45 {(byte) 0x68, 46 (byte) 0x1, 47 (byte) 0xe, 48 (byte) 0x1, 49 (byte) 0x5c, 50 (byte) 0x3a, 51 (byte) 0xbe, 52 (byte) 0x23, 53 (byte) 0x38, 54 (byte) 0, 55 (byte) 0, 56 (byte) 0, 57 (byte) 0, 58 (byte) 0, 59 (byte) 0x1, 60 (byte) 0, 61 (byte) 0x58, 62 (byte) 0x2 }; 63 } 64 65 70 public byte[] getData() 71 { 72 return data; 73 } 74 } 75 | Popular Tags |