wt.clients.util
Class TableSorter

java.lang.Object
  extended byjavax.swing.table.AbstractTableModel
      extended bywt.clients.util.TableMap
          extended bywt.clients.util.TableSorter
All Implemented Interfaces:
EventListener, Serializable, TableModel, TableModelListener
Direct Known Subclasses:
FraDomain.JTableSorter

public class TableSorter
extends TableMap

See Also:
Serialized Form

Field Summary
(package private)  boolean ascending
           
(package private)  int compares
           
(package private)  int[] indexes
           
(package private)  Vector sortingColumns
           
 
Fields inherited from class wt.clients.util.TableMap
model
 
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
 
Constructor Summary
TableSorter()
           
TableSorter(TableModel model)
           
 
Method Summary
 void addMouseListenerToHeaderInTable(JTable table)
           
 void addRow(Object[] aValue)
           
 void checkModel()
           
 int compare(int row1, int row2)
           
 int compareRowsByColumn(int row1, int row2, int column)
           
 int getRowOf(Object[] tableObject)
          Determine if the class is already in the table
 Object getValueAt(int aRow, int aColumn)
           
 void n2sort()
           
 void reallocateIndexes()
           
 void removeRow(int aRow)
           
 void setModel(TableModel model)
           
 void setValueAt(Object aValue, int aRow, int aColumn)
           
 void shuttlesort(int[] from, int[] to, int low, int high)
           
 void sort(Object sender)
           
 void sortByColumn(int column)
           
 void sortByColumn(int column, boolean ascending)
           
 void swap(int i, int j)
           
 void tableChanged(TableModelEvent e)
           
 
Methods inherited from class wt.clients.util.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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

indexes

int[] indexes

sortingColumns

Vector sortingColumns

ascending

boolean ascending

compares

int compares
Constructor Detail

TableSorter

public TableSorter()

TableSorter

public TableSorter(TableModel model)
Method Detail

setModel

public void setModel(TableModel model)
Overrides:
setModel in 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:
tableChanged in interface TableModelListener
Overrides:
tableChanged in class TableMap

checkModel

public void checkModel()

sort

public void sort(Object sender)

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:
getValueAt in interface TableModel
Overrides:
getValueAt in class TableMap

setValueAt

public void setValueAt(Object aValue,
                       int aRow,
                       int aColumn)
Specified by:
setValueAt in interface TableModel
Overrides:
setValueAt in class TableMap

removeRow

public void removeRow(int aRow)

addRow

public void addRow(Object[] aValue)

sortByColumn

public void sortByColumn(int column)

sortByColumn

public void sortByColumn(int column,
                         boolean ascending)

addMouseListenerToHeaderInTable

public void addMouseListenerToHeaderInTable(JTable table)

getRowOf

public int getRowOf(Object[] tableObject)
Determine if the class is already in the table