Exemplo n.º 1
0
 public ValueEval evaluate(EvaluationCell srcCell) {
   int sheetIndex = getSheetIndex(srcCell.getSheet());
   return evaluateAny(
       srcCell,
       sheetIndex,
       srcCell.getRowIndex(),
       srcCell.getColumnIndex(),
       new EvaluationTracker(_cache));
 }
Exemplo n.º 2
0
 /**
  * Should be called to tell the cell value cache that the specified cell has just been deleted.
  */
 public void notifyDeleteCell(EvaluationCell cell) {
   int sheetIndex = getSheetIndex(cell.getSheet());
   _cache.notifyDeleteCell(_workbookIx, sheetIndex, cell);
 }