first commit
This commit is contained in:
23
hrmsEjb/jxl/biff/drawing/MsoDrawingGroupRecord.java
Normal file
23
hrmsEjb/jxl/biff/drawing/MsoDrawingGroupRecord.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package jxl.biff.drawing;
|
||||
|
||||
import jxl.biff.Type;
|
||||
import jxl.biff.WritableRecordData;
|
||||
import jxl.read.biff.Record;
|
||||
|
||||
public class MsoDrawingGroupRecord extends WritableRecordData {
|
||||
private byte[] data;
|
||||
|
||||
public MsoDrawingGroupRecord(Record t) {
|
||||
super(t);
|
||||
this.data = t.getData();
|
||||
}
|
||||
|
||||
MsoDrawingGroupRecord(byte[] d) {
|
||||
super(Type.MSODRAWINGGROUP);
|
||||
this.data = d;
|
||||
}
|
||||
|
||||
public byte[] getData() {
|
||||
return this.data;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user