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