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,31 @@
package jxl.write;
import jxl.BooleanCell;
import jxl.format.CellFormat;
import jxl.write.biff.BooleanRecord;
public class Boolean extends BooleanRecord implements WritableCell, BooleanCell {
public Boolean(int c, int r, boolean val) {
super(c, r, val);
}
public Boolean(int c, int r, boolean val, CellFormat st) {
super(c, r, val, st);
}
public Boolean(BooleanCell nc) {
super(nc);
}
protected Boolean(int col, int row, Boolean b) {
super(col, row, b);
}
public void setValue(boolean val) {
super.setValue(val);
}
public WritableCell copyTo(int col, int row) {
return new Boolean(col, row, this);
}
}