first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package jxl.write.biff;
import jxl.biff.Type;
import jxl.biff.WritableRecordData;
class BOFRecord extends WritableRecordData {
private byte[] data;
private static class WorkbookGlobalsBOF {
private WorkbookGlobalsBOF() {}
}
private static class SheetBOF {
private SheetBOF() {}
}
public static final WorkbookGlobalsBOF workbookGlobals = new WorkbookGlobalsBOF();
public static final SheetBOF sheet = new SheetBOF();
public BOFRecord(WorkbookGlobalsBOF dummy) {
super(Type.BOF);
this.data = new byte[] {
0, 6, 5, 0, -14, 21, -52, 7, 0, 0,
0, 0, 6, 0, 0, 0 };
}
public BOFRecord(SheetBOF dummy) {
super(Type.BOF);
this.data = new byte[] {
0, 6, 16, 0, -14, 21, -52, 7, 0, 0,
0, 0, 6, 0, 0, 0 };
}
public byte[] getData() {
return this.data;
}
}