18 lines
299 B
Java
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;
|
|
}
|
|
}
|