1 19 20 package jxl.read.biff; 21 22 import jxl.CellType; 23 import jxl.biff.FormattingRecords; 24 25 29 public class BlankCell extends CellValue 30 { 31 38 BlankCell(Record t, FormattingRecords fr, SheetImpl si) 39 { 40 super(t, fr, si); 41 } 42 43 48 public String getContents() 49 { 50 return ""; 51 } 52 53 58 public CellType getType() 59 { 60 return CellType.EMPTY; 61 } 62 } 63 64 65 66 | Popular Tags |