Files
HRMS/hrmsEjb/jxl/write/biff/DSFRecord.java
2025-07-28 13:56:49 +05:30

18 lines
299 B
Java

package jxl.write.biff;
import jxl.biff.Type;
import jxl.biff.WritableRecordData;
class DSFRecord extends WritableRecordData {
private byte[] data;
public DSFRecord() {
super(Type.DSF);
this.data = new byte[] { 0, 0 };
}
public byte[] getData() {
return this.data;
}
}