Files
HRMS/hrmsEjb/jxl/write/Blank.java
2025-07-28 13:56:49 +05:30

28 lines
516 B
Java

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);
}
}