Interface TextExporter
-
- All Known Implementing Classes:
TableModelLatexTextExporter
public interface TextExportera generic interface to export to a text.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringcreateExportText()creates the text to export and returns itintgetMaxFractionDigits()voidsetMaxFractionDigits(int digits)sets the maximum fraction digits of exported doubles
-
-
-
Method Detail
-
setMaxFractionDigits
void setMaxFractionDigits(int digits)
sets the maximum fraction digits of exported doubles- Parameters:
digits- the maximum number of fraction Digits
-
getMaxFractionDigits
int getMaxFractionDigits()
- Returns:
- the maximum fraction digits for double values
-
createExportText
java.lang.String createExportText()
creates the text to export and returns it- Returns:
- the text which then can be used further
-
-