1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.WritableRecordData; 24 25 29 class CodepageRecord extends WritableRecordData 30 { 31 34 private byte[] data; 35 36 39 public CodepageRecord() 40 { 41 super(Type.CODEPAGE); 42 43 data = new byte[] {(byte) 0xe4, (byte) 0x4}; 45 } 46 47 52 public byte[] getData() 53 { 54 return data; 55 } 56 } 57 | Popular Tags |