first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
27
rus/WEB-INF/lib/jxl_src/jxl/write/Blank.java
Normal file
27
rus/WEB-INF/lib/jxl_src/jxl/write/Blank.java
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
package jxl.write;
|
||||
|
||||
import jxl.Cell;
|
||||
import jxl.format.CellFormat;
|
||||
import jxl.write.biff.BlankRecord;
|
||||
|
||||
public class Blank extends BlankRecord implements WritableCell {
|
||||
public Blank(int c, int r) {
|
||||
super(c, r);
|
||||
}
|
||||
|
||||
public Blank(int c, int r, CellFormat st) {
|
||||
super(c, r, st);
|
||||
}
|
||||
|
||||
public Blank(Cell lc) {
|
||||
super(lc);
|
||||
}
|
||||
|
||||
protected Blank(int col, int row, Blank b) {
|
||||
super(col, row, b);
|
||||
}
|
||||
|
||||
public WritableCell copyTo(int col, int row) {
|
||||
return new Blank(col, row, this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue