Package net.anwiba.commons.swing.table
Interface IObjectTableConfiguration<T>
-
- All Known Subinterfaces:
IObjectListTableConfiguration<T>
- All Known Implementing Classes:
ObjectListTableConfiguration,ObjectTableConfiguration
public interface IObjectTableConfiguration<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAutoResizeMode()IColumnConfigurationgetColumnConfiguration(int columnIndex)IMouseListenerFactory<T>getHeaderMouseListenerFactory()IKeyListenerFactory<T>getKeyListenerFactory()intgetPreferredVisibleRowCount()ObjectTableRowSorter<T>getRowSorter(IObjectTableModel<T> tableModel)intgetSelectionMode()ITableActionConfiguration<T>getTableActionConfiguration()IMouseListenerFactory<T>getTableMouseListenerFactory()IStringSubstitutergetToolTipSubstituter()
-
-
-
Method Detail
-
getColumnConfiguration
IColumnConfiguration getColumnConfiguration(int columnIndex)
-
getSelectionMode
int getSelectionMode()
-
getRowSorter
ObjectTableRowSorter<T> getRowSorter(IObjectTableModel<T> tableModel)
-
getTableActionConfiguration
ITableActionConfiguration<T> getTableActionConfiguration()
-
getPreferredVisibleRowCount
int getPreferredVisibleRowCount()
-
getTableMouseListenerFactory
IMouseListenerFactory<T> getTableMouseListenerFactory()
-
getKeyListenerFactory
IKeyListenerFactory<T> getKeyListenerFactory()
-
getAutoResizeMode
int getAutoResizeMode()
-
getToolTipSubstituter
IStringSubstituter getToolTipSubstituter()
-
getHeaderMouseListenerFactory
IMouseListenerFactory<T> getHeaderMouseListenerFactory()
-
-