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

18 lines
316 B
Java

package jxl.write.biff;
import jxl.biff.Type;
import jxl.biff.WritableRecordData;
class CodepageRecord extends WritableRecordData {
private byte[] data;
public CodepageRecord() {
super(Type.CODEPAGE);
this.data = new byte[] { -28, 4 };
}
public byte[] getData() {
return this.data;
}
}