1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.IntegerHelper; 24 import jxl.biff.StringHelper; 25 import jxl.biff.WritableRecordData; 26 27 30 class PLSRecord extends WritableRecordData 31 { 32 35 private byte[] data; 36 37 42 public PLSRecord(jxl.read.biff.PLSRecord hr) 43 { 44 super(Type.PLS); 45 46 data = hr.getData(); 47 } 48 49 54 public PLSRecord(PLSRecord hr) 55 { 56 super(Type.PLS); 57 58 data = new byte[hr.data.length]; 59 System.arraycopy(hr.data, 0, data, 0, data.length); 60 } 61 62 67 public byte[] getData() 68 { 69 return data; 70 } 71 } 72 73 74 | Popular Tags |