first commit
This commit is contained in:
18
hrmsEjb/jxl/read/biff/BlankCell.java
Normal file
18
hrmsEjb/jxl/read/biff/BlankCell.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package jxl.read.biff;
|
||||
|
||||
import jxl.CellType;
|
||||
import jxl.biff.FormattingRecords;
|
||||
|
||||
public class BlankCell extends CellValue {
|
||||
BlankCell(Record t, FormattingRecords fr, SheetImpl si) {
|
||||
super(t, fr, si);
|
||||
}
|
||||
|
||||
public String getContents() {
|
||||
return "";
|
||||
}
|
||||
|
||||
public CellType getType() {
|
||||
return CellType.EMPTY;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user