Package adams.data.io.output
Interface SpreadSheetWriterWithFormulaSupport
-
- All Known Implementing Classes:
CsvSpreadSheetWriter
,ExcelSpreadSheetWriter
,ExcelStreamingSpreadSheetWriter
,ODFSpreadSheetWriter
,TsvSpreadSheetWriter
public interface SpreadSheetWriterWithFormulaSupport
Interface for spreadsheet writers that support output of formulas.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getOutputAsDisplayed()
Returns whether to output the cell content as displayed, ie, no formulas but the result of formulas.String
outputAsDisplayedTipText()
Returns the tip text for this property.void
setOutputAsDisplayed(boolean value)
Sets whether to output the cell content as displayed, ie, no formulas but the result of formulas.
-
-
-
Method Detail
-
setOutputAsDisplayed
void setOutputAsDisplayed(boolean value)
Sets whether to output the cell content as displayed, ie, no formulas but the result of formulas.- Parameters:
value
- true if to output as displayed
-
getOutputAsDisplayed
boolean getOutputAsDisplayed()
Returns whether to output the cell content as displayed, ie, no formulas but the result of formulas.- Returns:
- true if to output as displayed
-
outputAsDisplayedTipText
String outputAsDisplayedTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
-