1 19 20 package jxl.read.biff; 21 22 import common.Logger; 23 24 import jxl.biff.RecordData; 25 26 29 public class ButtonPropertySetRecord extends RecordData 30 { 31 34 private static Logger logger = 35 Logger.getLogger(ButtonPropertySetRecord.class); 36 37 38 43 ButtonPropertySetRecord(Record t) 44 { 45 super(t); 46 } 47 48 53 public byte[] getData() 54 { 55 return getRecord().getData(); 56 } 57 } 58 | Popular Tags |