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

15 lines
238 B
Java

package jxl.write.biff;
import jxl.biff.Type;
import jxl.biff.WritableRecordData;
class EOFRecord extends WritableRecordData {
public EOFRecord() {
super(Type.EOF);
}
public byte[] getData() {
return new byte[0];
}
}