示例#1
0
 /* (non-Javadoc)
  * leave the map alone, if it needs resetting, reusing this class is probably a bad idea.
  * @see org.apache.poi.ss.formula.EvaluationSheet#clearAllCachedResultValues()
  */
 public void ClearAllCachedResultValues()
 {
     _masterBook.ClearAllCachedResultValues();
 }
示例#2
0
 /**
  * Should be called whenever there are Changes To input cells in the evaluated workbook.
  * Failure To call this method after changing cell values will cause incorrect behaviour
  * of the evaluate~ methods of this class
  */
 public void ClearAllCachedResultValues()
 {
     _cache.Clear();
     _sheetIndexesBySheet.Clear();
     _workbook.ClearAllCachedResultValues();
 }