1 19 20 package jxl.biff.formula; 21 22 import jxl.Sheet; 23 24 29 class StringParseItem extends ParseItem 30 { 31 34 protected StringParseItem() 35 { 36 } 37 38 43 void getString(StringBuffer buf) 44 { 45 } 46 47 52 byte[] getBytes() 53 { 54 return new byte[0]; 55 } 56 57 63 public void adjustRelativeCellReferences(int colAdjust, int rowAdjust) 64 { 65 } 66 67 75 void columnInserted(int sheetIndex, int col, boolean currentSheet) 76 { 77 } 78 79 89 void columnRemoved(int sheetIndex, int col, boolean currentSheet) 90 { 91 } 92 93 103 void rowInserted(int sheetIndex, int row, boolean currentSheet) 104 { 105 } 106 107 117 void rowRemoved(int sheetIndex, int row, boolean currentSheet) 118 { 119 } 120 } 121 | Popular Tags |