1 19 20 package jxl.biff.drawing; 21 22 import jxl.biff.WritableRecordData; 23 import jxl.biff.IntegerHelper; 24 import jxl.biff.Type; 25 import jxl.read.biff.Record; 26 27 31 public class MsoDrawingGroupRecord extends WritableRecordData 32 { 33 private byte[] data; 34 39 public MsoDrawingGroupRecord(Record t) 40 { 41 super(t); 42 data = t.getData(); 43 } 44 45 MsoDrawingGroupRecord(byte[] d) 46 { 47 super(Type.MSODRAWINGGROUP); 48 data = d; 49 } 50 51 56 public byte[] getData() 57 { 58 return data; 59 } 60 } 61 62 63 64 65 | Popular Tags |