Uses of Class
javax.swing.RowSorter
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides for events fired by Swing components.
Provides classes and interfaces for dealing with
javax.swing.JTable
.-
Uses of RowSorter in javax.swing
Modifier and TypeClassDescriptionclass
DefaultRowSorter<M,I>
An implementation ofRowSorter
that provides sorting and filtering around a grid-based data model.Modifier and TypeMethodDescriptionRowSorter<? extends TableModel>
JTable.getRowSorter()
Returns the object responsible for sorting.Modifier and TypeMethodDescriptionvoid
JTable.setRowSorter(RowSorter<? extends TableModel> sorter)
Sets theRowSorter
. -
Uses of RowSorter in javax.swing.event
Modifier and TypeMethodDescriptionRowSorter<?>
RowSorterEvent.getSource()
Returns the source of the event as aRowSorter
.ModifierConstructorDescriptionRowSorterEvent(RowSorter<?> source)
Creates aRowSorterEvent
of typeSORT_ORDER_CHANGED
.RowSorterEvent(RowSorter<?> source, RowSorterEvent.Type type, int[] previousRowIndexToModel)
Creates aRowSorterEvent
. -
Uses of RowSorter in javax.swing.table
Modifier and TypeClassDescriptionclass
TableRowSorter<M extends TableModel>
An implementation ofRowSorter
that provides sorting and filtering using aTableModel
.