Package pl.poznan.put.interfaces
Interface Tabular
-
public interface TabularA set of methods to be implemented by result objects with tabular form of data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableModelasDisplayableTableModel()Generates tabular data to be exported to output file i.e. raw numbers with maximum precision and ASCII only.TableModelasExportableTableModel()Generates tabular data which are formatted for UI, so they might be long, complex and with Unicode characters.
-
-
-
Method Detail
-
asExportableTableModel
TableModel asExportableTableModel()
Generates tabular data which are formatted for UI, so they might be long, complex and with Unicode characters.- Returns:
- An instance of
TableModelwith the data.
-
asDisplayableTableModel
TableModel asDisplayableTableModel()
Generates tabular data to be exported to output file i.e. raw numbers with maximum precision and ASCII only.- Returns:
- An instance of
TableModelwith the data.
-
-