|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.swing.table.AbstractTableModel
de.sciss.gui.SortedTableModel
public class SortedTableModel
Original class commentary: SortedTableModel is a decorator for TableModels; adding sorting functionality to a supplied TableModel. SortedTableModel does not store or copy the data in its TableModel; instead it maintains a map from the row indexes of the view to the row indexes of the model. As requests are made of the sorter (like getValueAt(row, col)) they are passed to the underlying model after the row numbers have been translated via the internal mapping array. This way, the SortedTableModel appears to hold another copy of the table with the rows in a different order.
SortedTableModel registers itself as a listener to the underlying model, just as the JTable itself would. Events recieved from the model are examined, sometimes manipulated (typically widened), and then passed on to the SortedTableModel's listeners (typically the JTable). If a change to the model has invalidated the order of SortedTableModel's rows, a note of this is made and the sorter will resort the rows the next time a value is requested. When the tableHeader property is set, either by using the setTableHeader() method or the two argument constructor, the table header may be used as a complete UI for SortedTableModel. The default renderer of the tableHeader is decorated with a renderer that indicates the sorting status of each column. In addition, a mouse listener is installed with the following behavior:
Field Summary | |
---|---|
static int |
ASCENDING
|
protected java.util.List |
collSorted
|
static java.util.Comparator |
COMPARABLE_COMPARATOR
A comparator which works on objects that implement the Comparable interface |
static int |
DESCENDING
|
protected int[] |
modelToView
|
static int |
NOT_SORTED
|
protected java.util.Set |
setDisallowedColumns
|
static java.util.Comparator |
STRING_COMPARATOR
A comparator which converts the objects to strings |
static java.util.Comparator |
STRING_COMPARATOR_UPCASE
A comparator which converts the objects to strings and converting them to upper case. |
protected javax.swing.table.TableModel |
tableModel
|
Fields inherited from class javax.swing.table.AbstractTableModel |
---|
listenerList |
Constructor Summary | |
---|---|
SortedTableModel()
Creates a new sorted table model with no underlying model assigned. |
|
SortedTableModel(javax.swing.table.TableModel tableModel)
Creates a new sorted table model with a given underlying model assigned. |
|
SortedTableModel(javax.swing.table.TableModel tableModel,
javax.swing.table.JTableHeader tableHeader)
Creates a new sorted table model with a given underlying model assigned and a table header used for selecting the sorted column. |
Method Summary | |
---|---|
void |
cancelSorting()
Reverts view back to unsorted mode. |
protected void |
clearSortingState()
|
java.lang.Class |
getColumnClass(int column)
|
int |
getColumnCount()
|
java.lang.String |
getColumnName(int column)
|
protected java.util.Comparator |
getComparator(int column)
|
protected javax.swing.Icon |
getHeaderRendererIcon(int column)
|
int |
getModelIndex(int viewIndex)
Returns the row index in the model based on a row index in the visual (sorted) representation. |
protected int[] |
getModelToView()
|
int |
getRowCount()
|
int |
getSortedColumnDirection()
Queries the sorted column's direction. |
int |
getSortedColumnIndex()
Queries the index of the sorted column. |
boolean |
getSortingAllowed(int columnIndex)
Defines a column to be sortable or not sortable. |
protected int |
getSortingStatus(int column)
|
javax.swing.table.JTableHeader |
getTableHeader()
|
javax.swing.table.TableModel |
getTableModel()
|
java.lang.Object |
getValueAt(int row,
int column)
|
int |
getViewIndex(int modelIndex)
Returns the row index in the view based on a row index in the (non-sorted) model. |
boolean |
isCellEditable(int row,
int column)
|
boolean |
isSorting()
Queries whether the table is sorted by some column. |
void |
setColumnComparator(java.lang.Class type,
java.util.Comparator comparator)
Provides a custom comparator for a given class of table cell values. |
void |
setSortedColumn(int columnIndex,
int direction)
Sets the sorted column. |
void |
setSortingAllowed(int columnIndex,
boolean allowed)
Defines a column to be sortable or not sortable. |
protected void |
setSortingStatus(int column,
int status)
|
void |
setTableHeader(javax.swing.table.JTableHeader tableHeader)
|
void |
setTableModel(javax.swing.table.TableModel tableModel)
|
void |
setValueAt(java.lang.Object aValue,
int row,
int column)
|
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 |
---|
protected javax.swing.table.TableModel tableModel
public static final int DESCENDING
public static final int NOT_SORTED
public static final int ASCENDING
public static final java.util.Comparator COMPARABLE_COMPARATOR
public static final java.util.Comparator STRING_COMPARATOR
public static final java.util.Comparator STRING_COMPARATOR_UPCASE
protected int[] modelToView
protected java.util.List collSorted
protected java.util.Set setDisallowedColumns
Constructor Detail |
---|
public SortedTableModel()
setTableModel
to assign such
an underlying model before using the stm.
public SortedTableModel(javax.swing.table.TableModel tableModel)
setTableHeader
to assign a header
used for selecting the sorted column.
public SortedTableModel(javax.swing.table.TableModel tableModel, javax.swing.table.JTableHeader tableHeader)
Method Detail |
---|
public javax.swing.table.TableModel getTableModel()
public void setTableModel(javax.swing.table.TableModel tableModel)
public javax.swing.table.JTableHeader getTableHeader()
public void setTableHeader(javax.swing.table.JTableHeader tableHeader)
public boolean isSorting()
true
if the table is sorted by some columnpublic int getSortedColumnIndex()
public int getSortedColumnDirection()
public void setSortedColumn(int columnIndex, int direction)
columnIndex
- index of the column to sortdirection
- either of ASCENDING, DESCENDING, or NOT_SORTED (equal to calling
cancelSorting())public void cancelSorting()
public void setColumnComparator(java.lang.Class type, java.util.Comparator comparator)
type
- the class of the values for which to use the custom comparatorcomparator
- the comparator to use for this class of values, or null
to remove a custom comparatorpublic void setSortingAllowed(int columnIndex, boolean allowed)
columnIndex
- model index of the column to modifyallowed
- true
to allow this column to be sorted,
false
to prohibit sortingpublic boolean getSortingAllowed(int columnIndex)
columnIndex
- model index of the column to modify
true
if it's allowed to sort this column,
false
otherwisepublic int getModelIndex(int viewIndex)
viewIndex
- row index in the sorted visible table
IndexOutOfBoundException
- if the viewIndex is out of rangepublic int getViewIndex(int modelIndex)
modelIndex
- row index in the underlying (not sorted) model
IndexOutOfBoundException
- if the modelIndex is out of rangeprotected int getSortingStatus(int column)
protected void setSortingStatus(int column, int status)
protected javax.swing.Icon getHeaderRendererIcon(int column)
protected java.util.Comparator getComparator(int column)
protected void clearSortingState()
protected int[] getModelToView()
public int getRowCount()
public int getColumnCount()
public java.lang.String getColumnName(int column)
getColumnName
in interface javax.swing.table.TableModel
getColumnName
in class javax.swing.table.AbstractTableModel
public java.lang.Class getColumnClass(int column)
getColumnClass
in interface javax.swing.table.TableModel
getColumnClass
in class javax.swing.table.AbstractTableModel
public boolean isCellEditable(int row, int column)
isCellEditable
in interface javax.swing.table.TableModel
isCellEditable
in class javax.swing.table.AbstractTableModel
public java.lang.Object getValueAt(int row, int column)
public void setValueAt(java.lang.Object aValue, int row, int column)
setValueAt
in interface javax.swing.table.TableModel
setValueAt
in class javax.swing.table.AbstractTableModel
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |