jwo.utils.gui
Class TableSorter
java.lang.Object
   javax.swing.table.AbstractTableModel
javax.swing.table.AbstractTableModel
       jwo.utils.gui.TableMap
jwo.utils.gui.TableMap
           jwo.utils.gui.TableSorter
jwo.utils.gui.TableSorter
- All Implemented Interfaces: 
- EventListener, Serializable, TableModel, TableModelListener
- 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 algorthm used is stable 
 which means that it does not move around rows when its comparison 
 function returns 0 to denote that they are equivalent.
- Version:
- 2.2, 17th December, 1997, modified December 2003.
- Author:
- Philip Milne, modifed by Jo Wood.
- See Also:
- Serialized Form
 
 
 
 
| Method Summary | 
|  void | addMouseListenerToHeaderInTable(JTable table)
 | 
|  void | checkModel()
 | 
|  int | compare(int row1,
        int row2)
 | 
|  int | compareRowsByColumn(int row1,
                    int row2,
                    int column)
 | 
|  Object | getValueAt(int aRow,
           int aColumn)
 | 
|  void | n2sort()
 | 
|  void | reallocateIndexes()
 | 
|  void | setModel(TableModel model)
 | 
|  void | setValueAt(Object aValue,
           int aRow,
           int aColumn)
 | 
|  void | shuttlesort(int[] from,
            int[] to,
            int low,
            int high)
 | 
|  void | sort()
 | 
|  void | sortByColumn(int column)
 | 
|  void | sortByColumn(int column,
             boolean ascending)
 | 
|  void | swap(int i,
     int j)
 | 
|  void | tableChanged(TableModelEvent e)
 | 
 
 
| Methods inherited from class javax.swing.table.AbstractTableModel | 
| addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListener | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
TableSorter
public TableSorter()
TableSorter
public TableSorter(TableModel model)
setModel
public void setModel(TableModel model)
- 
- Overrides:
- setModelin class- TableMap
 
- 
 
compareRowsByColumn
public int compareRowsByColumn(int row1,
                               int row2,
                               int column)
- 
 
compare
public int compare(int row1,
                   int row2)
- 
 
reallocateIndexes
public void reallocateIndexes()
- 
 
tableChanged
public void tableChanged(TableModelEvent e)
- 
- Specified by:
- tableChangedin interface- TableModelListener
- Overrides:
- tableChangedin class- TableMap
 
- 
 
checkModel
public void checkModel()
- 
 
sort
public void sort()
- 
 
n2sort
public void n2sort()
- 
 
shuttlesort
public void shuttlesort(int[] from,
                        int[] to,
                        int low,
                        int high)
- 
 
swap
public void swap(int i,
                 int j)
- 
 
getValueAt
public Object getValueAt(int aRow,
                         int aColumn)
- 
- Specified by:
- getValueAtin interface- TableModel
- Overrides:
- getValueAtin class- TableMap
 
- 
 
setValueAt
public void setValueAt(Object aValue,
                       int aRow,
                       int aColumn)
- 
- Specified by:
- setValueAtin interface- TableModel
- Overrides:
- setValueAtin class- TableMap
 
- 
 
sortByColumn
public void sortByColumn(int column)
- 
 
sortByColumn
public void sortByColumn(int column,
                         boolean ascending)
- 
 
addMouseListenerToHeaderInTable
public void addMouseListenerToHeaderInTable(JTable table)
- 
 
Copyright Jo Wood, 1996-2005, last modified, 11th March, 2005