public ValueEval evaluate(EvaluationCell srcCell) { int sheetIndex = getSheetIndex(srcCell.getSheet()); return evaluateAny( srcCell, sheetIndex, srcCell.getRowIndex(), srcCell.getColumnIndex(), new EvaluationTracker(_cache)); }
/** * 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); }