1 19 20 package jxl.biff.formula; 21 22 25 interface Parser 26 { 27 32 public void parse() throws FormulaException; 33 34 39 public String getFormula(); 40 41 47 public byte[] getBytes(); 48 49 56 public void adjustRelativeCellReferences(int colAdjust, int rowAdjust); 57 58 59 69 public void columnInserted(int sheetIndex, int col, boolean currentSheet); 70 71 81 public void columnRemoved(int sheetIndex, int col, boolean currentSheet); 82 83 93 public void rowInserted(int sheetIndex, int row, boolean currentSheet); 94 95 105 public void rowRemoved(int sheetIndex, int row, boolean currentSheet); 106 } 107 | Popular Tags |