Class AnyObjectTableModel<T>
java.lang.Object
javax.swing.table.AbstractTableModel
docking.widgets.table.AbstractGTableModel<T>
docking.widgets.table.AbstractSortedTableModel<T>
docking.widgets.table.GDynamicColumnTableModel<T,Object>
docking.widgets.table.AnyObjectTableModel<T>
- Type Parameters:
T- the row object type
- All Implemented Interfaces:
ConfigurableColumnTableModel, DynamicColumnTableModel<T>, RowObjectTableModel<T>, SelectionStorage<T>, SortedTableModel, VariableColumnTableModel, Serializable, EventListener, ChangeListener, TableModel
A table that allow users to provide a list of data objects whose method can be used
to create columns.
- See Also:
-
Field Summary
Fields inherited from class GDynamicColumnTableModel
columnSettings, serviceProvider, tableColumnsFields inherited from class AbstractSortedTableModel
hasEverSortedFields inherited from class AbstractGTableModel
isDisposed, WIDTH_UNDEFINEDFields inherited from class AbstractTableModel
listenerListFields inherited from interface SortedTableModel
ASCENDING_ORDER, DESCENDING_ORDER -
Constructor Summary
ConstructorsConstructorDescriptionAnyObjectTableModel(String modelName, Class<T> dataClass, String... methodNames) AnyObjectTableModel(String modelName, Method... methods) AnyObjectTableModel(String modelName, List<Method> methods) -
Method Summary
Modifier and TypeMethodDescriptionprotected TableColumnDescriptor<T> Returns the table's context for the data.Implementors should return the current data of the model.getName()Returns the name of this modelbooleanisSortable(int columnIndex) Returns true if the specified columnIndex is sortable.voidsetModelData(List<T> data) Methods inherited from class GDynamicColumnTableModel
addTableColumn, addTableColumn, addTableColumns, addTableColumns, createSortComparator, createSortComparatorForColumn, dispose, disposeDynamicColumnData, getColumn, getColumnClass, getColumnCount, getColumnDescription, getColumnDisplayName, getColumnIndex, getColumnIndex, getColumnName, getColumnSettings, getColumnSettingsDefinitions, getColumnValueForRow, getDefaultColumnCount, getHeaderRenderer, getMaxLines, getPreferredColumnWidth, getRenderer, getTableColumnDescriptor, getUniqueIdentifier, isDefaultColumn, isVisibleByDefault, loadDiscoveredTableColumns, reloadColumns, removeTableColumn, removeTableColumns, setAllColumnSettings, stateChangedMethods inherited from class AbstractSortedTableModel
addSortListener, cleanupTableSortState, createSortingContext, fireTableChanged, getIndexForRowObject, getIndexForRowObject, getPendingSortState, getPrimarySortColumnIndex, getRowIndex, getRowObject, getTableSortState, getValueAt, initializeSorting, isSorted, isSortPending, notifyModelSorted, reSort, setDefaultTableSortState, setTableSortState, sort, sortCompletedMethods inherited from class AbstractGTableModel
getLastSelectedObjects, getRowCount, isDisposed, refresh, setLastSelectedObjectsMethods inherited from class AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAtMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface RowObjectTableModel
fireTableDataChanged, getRowIndex, getRowObjectMethods inherited from interface TableModel
addTableModelListener, getRowCount, getValueAt, isCellEditable, removeTableModelListener, setValueAt
-
Constructor Details
-
AnyObjectTableModel
-
AnyObjectTableModel
-
AnyObjectTableModel
-
AnyObjectTableModel
-
AnyObjectTableModel
-
AnyObjectTableModel
-
-
Method Details
-
getName
Description copied from interface:RowObjectTableModelReturns the name of this model- Returns:
- the name of this model
-
isSortable
public boolean isSortable(int columnIndex) Description copied from interface:SortedTableModelReturns true if the specified columnIndex is sortable.- Specified by:
isSortablein interfaceSortedTableModel- Overrides:
isSortablein classGDynamicColumnTableModel<T,Object> - Parameters:
columnIndex- the column index- Returns:
- true if the specified columnIndex is sortable
-
getModelData
Description copied from interface:RowObjectTableModelImplementors should return the current data of the model. For models that support filtering, this will be the filtered version of the data. Furthermore, the data should be the underlying data and not a copy, as this method will potentially sort the given data.For those subclasses using an array, you may use the
Arraysclass to create a list backed by the array (Arrays.asList(Object...)).- Returns:
- the model data.
-
setModelData
-
createTableColumnDescriptor
- Specified by:
createTableColumnDescriptorin classGDynamicColumnTableModel<T,Object>
-
getDataSource
Description copied from class:GDynamicColumnTableModelReturns the table's context for the data.- Specified by:
getDataSourcein classGDynamicColumnTableModel<T,Object> - Returns:
- the table's context for the data.
-