java.lang.Object
javax.swing.table.AbstractTableModel
org.jpo.gui.TableMap
org.jpo.gui.TableSorter
- All Implemented Interfaces:
Serializable
,EventListener
,TableModelListener
,TableModel
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 e.g. "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:
-
Field Summary
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
There is no-where else to put this.void
int
compare
(int row1, int row2) int
compareRowsByColumn
(int row1, int row2, int column) getValueAt
(int aRow, int aColumn) The mapping only affects the contents of the data rows.void
n2sort()
void
void
setModel
(TableModel model) void
setValueAt
(Object aValue, int aRow, int aColumn) Set cell valuevoid
shuttlesort
(int[] from, int[] to, int low, int high) This is a home-grown implementation which we have not had time to research - it may perform poorly in some circumstances.void
sort()
void
sortByColumn
(int column) void
sortByColumn
(int column, boolean ascending) void
swap
(int i, int j) void
Implementation of the TableModelListener interface, By default forward all events to all the listeners.Methods inherited from class org.jpo.gui.TableMap
getColumnClass, getColumnCount, getColumnName, getModel, getRowCount, isCellEditable
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListener
-
Constructor Details
-
TableSorter
public TableSorter() -
TableSorter
-
-
Method Details
-
setModel
-
compareRowsByColumn
public int compareRowsByColumn(int row1, int row2, int column) -
compare
public int compare(int row1, int row2) -
reallocateIndexes
public void reallocateIndexes() -
tableChanged
Description copied from class:TableMap
Implementation of the TableModelListener interface, By default forward all events to all the listeners.- Specified by:
tableChanged
in interfaceTableModelListener
- Overrides:
tableChanged
in classTableMap
- Parameters:
e
- event
-
checkModel
public void checkModel() -
sort
public void sort() -
n2sort
public void n2sort() -
shuttlesort
public void shuttlesort(int[] from, int[] to, int low, int high) This is a home-grown implementation which we have not had time to research - it may perform poorly in some circumstances. It requires twice the space of an in-place algorithm and makes NlogN assignments shuttling the values between the two arrays. The number of compares appears to vary between N-1 and NlogN depending on the initial order but the main reason for using it here is that, unlike qsort, it is stable.- Parameters:
from
- Fromto
- Tolow
- Lowhigh
- Hight
-
swap
public void swap(int i, int j) -
getValueAt
The mapping only affects the contents of the data rows. Pass all requests to these rows through the mapping array: "indexes".- Specified by:
getValueAt
in interfaceTableModel
- Overrides:
getValueAt
in classTableMap
- Parameters:
aRow
- a rowaColumn
- a column- Returns:
- the value at the coordinates
-
setValueAt
Description copied from class:TableMap
Set cell value- Specified by:
setValueAt
in interfaceTableModel
- Overrides:
setValueAt
in classTableMap
- Parameters:
aValue
- a valueaRow
- a rowaColumn
- a column
-
sortByColumn
public void sortByColumn(int column) -
sortByColumn
public void sortByColumn(int column, boolean ascending) -
addMouseListenerToHeaderInTable
There is no-where else to put this. Add a mouse listener to the Table to trigger a table sort when a column heading is clicked in the JTable.- Parameters:
table
- Table
-