1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.WritableRecordData; 24 25 28 class ButtonPropertySetRecord extends WritableRecordData 29 { 30 33 private byte[] data; 34 35 38 public ButtonPropertySetRecord(jxl.read.biff.ButtonPropertySetRecord bps) 39 { 40 super(Type.BUTTONPROPERTYSET); 41 42 data = bps.getData(); 43 } 44 45 48 public ButtonPropertySetRecord(ButtonPropertySetRecord bps) 49 { 50 super(Type.BUTTONPROPERTYSET); 51 52 data = bps.getData(); 53 } 54 55 60 public byte[] getData() 61 { 62 return data; 63 } 64 } 65 66 67 68 69 70 71 72 73 | Popular Tags |