Package groovy.swing.table
Class TableSorter
java.lang.Object
javax.swing.table.AbstractTableModel
groovy.swing.table.TableMap
groovy.swing.table.TableSorter
- All Implemented Interfaces:
- java.io.Serializable,- java.util.EventListener,- javax.swing.event.TableModelListener,- javax.swing.table.TableModel
public class TableSorter extends TableMap
A sorter for TableModels. The sorter has a model (conforming to TableModel)
 and itself implements TableModel. TableSorter does not store or copy
 the data in the TableModel, instead it maintains an array of
 integers which it keeps the same size as the number of rows in its
 model. When the model changes it notifies the sorter that something
 has changed eg. "rowsAdded" so that its internal array of integers
 can be reallocated. As requests are made of the sorter (like
 getValueAt(row, col) it redirects them to its model via the mapping
 array. That way the TableSorter appears to hold another copy of the table
 with the rows in a different order. The sorting algorithm used is stable
 which means that it does not move around rows when its comparison
 function returns 0 to denote that they are equivalent.
- See Also:
- Serialized Form
- 
Field SummaryFields inherited from class javax.swing.table.AbstractTableModellistenerList
- 
Constructor SummaryConstructors Constructor Description TableSorter()TableSorter(javax.swing.table.TableModel model)
- 
Method SummaryModifier and Type Method Description voidaddMouseListenerToHeaderInTable(javax.swing.JTable table)voidcheckModel()intcompare(int row1, int row2)intcompareRowsByColumn(int row1, int row2, int column)java.lang.ObjectgetValueAt(int aRow, int aColumn)voidn2sort()voidreallocateIndexes()voidsetModel(javax.swing.table.TableModel model)voidsetValueAt(java.lang.Object aValue, int aRow, int aColumn)voidshuttlesort(int[] from, int[] to, int low, int high)voidsort(java.lang.Object sender)voidsortByColumn(int column)voidsortByColumn(int column, boolean ascending)voidswap(int i, int j)voidtableChanged(javax.swing.event.TableModelEvent e)Methods inherited from class groovy.swing.table.TableMapgetColumnClass, getColumnCount, getColumnName, getModel, getRowCount, isCellEditableMethods inherited from class javax.swing.table.AbstractTableModeladdTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListenerMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
TableSorterpublic TableSorter()
- 
TableSorterpublic TableSorter(javax.swing.table.TableModel model)
 
- 
- 
Method Details- 
setModelpublic void setModel(javax.swing.table.TableModel model)
- 
compareRowsByColumnpublic int compareRowsByColumn(int row1, int row2, int column)
- 
comparepublic int compare(int row1, int row2)
- 
reallocateIndexespublic void reallocateIndexes()
- 
tableChangedpublic void tableChanged(javax.swing.event.TableModelEvent e)- Specified by:
- tableChangedin interface- javax.swing.event.TableModelListener
- Overrides:
- tableChangedin class- TableMap
 
- 
checkModelpublic void checkModel()
- 
sortpublic void sort(java.lang.Object sender)
- 
n2sortpublic void n2sort()
- 
shuttlesortpublic void shuttlesort(int[] from, int[] to, int low, int high)
- 
swappublic void swap(int i, int j)
- 
getValueAtpublic java.lang.Object getValueAt(int aRow, int aColumn)- Specified by:
- getValueAtin interface- javax.swing.table.TableModel
- Overrides:
- getValueAtin class- TableMap
 
- 
setValueAtpublic void setValueAt(java.lang.Object aValue, int aRow, int aColumn)- Specified by:
- setValueAtin interface- javax.swing.table.TableModel
- Overrides:
- setValueAtin class- TableMap
 
- 
sortByColumnpublic void sortByColumn(int column)
- 
sortByColumnpublic void sortByColumn(int column, boolean ascending)
- 
addMouseListenerToHeaderInTablepublic void addMouseListenerToHeaderInTable(javax.swing.JTable table)
 
-