first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
31
rus/WEB-INF/lib/jxl_src/jxl/write/Boolean.java
Normal file
31
rus/WEB-INF/lib/jxl_src/jxl/write/Boolean.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue