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,22 @@
package jxl.biff;
class BuiltInStyle extends WritableRecordData {
private int xfIndex;
private int styleNumber;
public BuiltInStyle(int xfind, int sn) {
super(Type.STYLE);
this.xfIndex = xfind;
this.styleNumber = sn;
}
public byte[] getData() {
byte[] data = new byte[4];
IntegerHelper.getTwoBytes(this.xfIndex, data, 0);
data[1] = (byte)(data[1] | 0x80);
data[2] = (byte)this.styleNumber;
data[3] = -1;
return data;
}
}