1 19 20 package jxl.write.biff; 21 22 import common.Logger; 23 24 import jxl.CellType; 25 import jxl.Cell; 26 import jxl.format.CellFormat; 27 import jxl.biff.Type; 28 import jxl.biff.StringHelper; 29 import jxl.biff.IntegerHelper; 30 import jxl.biff.FormattingRecords; 31 import jxl.biff.CellReferenceHelper; 32 33 36 public abstract class BlankRecord extends CellValue 37 { 38 41 private static Logger logger = Logger.getLogger(BlankRecord.class); 42 43 50 protected BlankRecord(int c, int r) 51 { 52 super(Type.BLANK, c, r); 53 } 54 55 63 protected BlankRecord(int c, int r, CellFormat st) 64 { 65 super(Type.BLANK, c, r, st); 66 } 67 68 74 protected BlankRecord(Cell c) 75 { 76 super(Type.BLANK, c); 77 } 78 79 86 protected BlankRecord(int c, int r, BlankRecord br) 87 { 88 super(Type.BLANK, c, r, br); 89 } 90 91 96 public CellType getType() 97 { 98 return CellType.EMPTY; 99 } 100 101 106 public String getContents() 107 { 108 return ""; 109 } 110 } 111 112 113 114 | Popular Tags |