first commit
This commit is contained in:
35
hrmsEjb/jxl/write/biff/BlankRecord.java
Normal file
35
hrmsEjb/jxl/write/biff/BlankRecord.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package jxl.write.biff;
|
||||
|
||||
import common.Logger;
|
||||
import jxl.Cell;
|
||||
import jxl.CellType;
|
||||
import jxl.biff.Type;
|
||||
import jxl.format.CellFormat;
|
||||
|
||||
public abstract class BlankRecord extends CellValue {
|
||||
private static Logger logger = Logger.getLogger(BlankRecord.class);
|
||||
|
||||
protected BlankRecord(int c, int r) {
|
||||
super(Type.BLANK, c, r);
|
||||
}
|
||||
|
||||
protected BlankRecord(int c, int r, CellFormat st) {
|
||||
super(Type.BLANK, c, r, st);
|
||||
}
|
||||
|
||||
protected BlankRecord(Cell c) {
|
||||
super(Type.BLANK, c);
|
||||
}
|
||||
|
||||
protected BlankRecord(int c, int r, BlankRecord br) {
|
||||
super(Type.BLANK, c, r, br);
|
||||
}
|
||||
|
||||
public CellType getType() {
|
||||
return CellType.EMPTY;
|
||||
}
|
||||
|
||||
public String getContents() {
|
||||
return "";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user