Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/write/Boolean.java

31 lines
667 B
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
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);
}
}