Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

cor.gui
Class JspmTableSorter  view JspmTableSorter download JspmTableSorter.java

java.lang.Object
  extended byjavax.swing.table.AbstractTableModel
      extended bycor.gui.JspmTableMap
          extended bycor.gui.JspmTableSorter
All Implemented Interfaces:
java.util.EventListener, java.io.Serializable, javax.swing.table.TableModel, javax.swing.event.TableModelListener

public class JspmTableSorter
extends JspmTableMap

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:
1.5 12/17/97

Field Summary
(package private)  boolean ascending
          Ascending/decending
(package private)  int compares
          Compare flag
(package private)  int[] indexes
          Indexes
(package private)  java.util.Vector sortingColumns
          Columns
 
Fields inherited from class cor.gui.JspmTableMap
model
 
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
 
Constructor Summary
JspmTableSorter()
          Constructor
JspmTableSorter(javax.swing.table.TableModel model)
           
 
Method Summary
 void addMouseListenerToHeaderInTable(javax.swing.JTable table)
           
 void checkModel()
           
 int compare(int row1, int row2)
           
 int compareRowsByColumn(int row1, int row2, int column)
           
 java.lang.Object getValueAt(int aRow, int aColumn)
          The value at a specific row/column By default, implement TableModel by forwarding all messages to the model.
 void n2sort()
           
 void reallocateIndexes()
           
 void setModel(javax.swing.table.TableModel model)
          Sets the table model
 void setValueAt(java.lang.Object aValue, int aRow, int aColumn)
          Sets value at a specific row/column By default, implement TableModel by forwarding all messages to the model.
 void shuttlesort(int[] from, int[] to, int low, int high)
           
 void sort(java.lang.Object sender)
           
 void sortByColumn(int column)
           
 void sortByColumn(int column, boolean ascending)
           
 void swap(int i, int j)
           
 void tableChanged(javax.swing.event.TableModelEvent e)
          Table changed notification.
 
Methods inherited from class cor.gui.JspmTableMap
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
Indexes


sortingColumns

java.util.Vector sortingColumns
Columns


ascending

boolean ascending
Ascending/decending


compares

int compares
Compare flag

Constructor Detail

JspmTableSorter

public JspmTableSorter()
Constructor


JspmTableSorter

public JspmTableSorter(javax.swing.table.TableModel model)
Method Detail

setModel

public void setModel(javax.swing.table.TableModel model)
Description copied from class: JspmTableMap
Sets the table model

Overrides:
setModel in class JspmTableMap

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(javax.swing.event.TableModelEvent e)
Description copied from class: JspmTableMap
Table changed notification. By default forward all events to all the listeners.

Specified by:
tableChanged in interface javax.swing.event.TableModelListener
Overrides:
tableChanged in class JspmTableMap

checkModel

public void checkModel()

sort

public void sort(java.lang.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 java.lang.Object getValueAt(int aRow,
                                   int aColumn)
Description copied from class: JspmTableMap
The value at a specific row/column By default, implement TableModel by forwarding all messages to the model.

Specified by:
getValueAt in interface javax.swing.table.TableModel
Overrides:
getValueAt in class JspmTableMap

setValueAt

public void setValueAt(java.lang.Object aValue,
                       int aRow,
                       int aColumn)
Description copied from class: JspmTableMap
Sets value at a specific row/column By default, implement TableModel by forwarding all messages to the model.

Specified by:
setValueAt in interface javax.swing.table.TableModel
Overrides:
setValueAt in class JspmTableMap

sortByColumn

public void sortByColumn(int column)

sortByColumn

public void sortByColumn(int column,
                         boolean ascending)

addMouseListenerToHeaderInTable

public void addMouseListenerToHeaderInTable(javax.swing.JTable table)