1 19 20 package jxl.biff.formula; 21 22 import jxl.Sheet; 23 28 abstract class Operand extends ParseItem 29 { 30 33 public Operand() 34 { 35 } 36 37 43 public void adjustRelativeCellReferences(int colAdjust, int rowAdjust) 44 { 45 } 46 47 55 void columnInserted(int sheetIndex, int col, boolean currentSheet) 56 { 57 } 58 59 69 void columnRemoved(int sheetIndex, int col, boolean currentSheet) 70 { 71 } 72 73 83 void rowInserted(int sheetIndex, int row, boolean currentSheet) 84 { 85 } 86 87 97 void rowRemoved(int sheetIndex, int row, boolean currentSheet) 98 { 99 } 100 } 101 102 103 104 105 106 107 108 109 110 111 | Popular Tags |