first commit
This commit is contained in:
17
hrmsEjb/jxl/write/biff/ObjProjRecord.java
Normal file
17
hrmsEjb/jxl/write/biff/ObjProjRecord.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package jxl.write.biff;
|
||||
|
||||
import jxl.biff.Type;
|
||||
import jxl.biff.WritableRecordData;
|
||||
|
||||
class ObjProjRecord extends WritableRecordData {
|
||||
private byte[] data;
|
||||
|
||||
public ObjProjRecord() {
|
||||
super(Type.OBJPROJ);
|
||||
this.data = new byte[4];
|
||||
}
|
||||
|
||||
public byte[] getData() {
|
||||
return this.data;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user