1 19 20 package jxl.biff; 21 22 import jxl.read.biff.Record; 23 24 28 public class ContinueRecord extends WritableRecordData 29 { 30 33 private byte[] data; 34 35 40 public ContinueRecord(Record t) 41 { 42 super(t); 43 data = t.getData(); 44 } 45 46 51 public ContinueRecord(byte[] d) 52 { 53 super(Type.CONTINUE); 54 data = d; 55 } 56 57 62 public byte[] getData() 63 { 64 return data; 65 } 66 67 } 68 | Popular Tags |