Uses of Class
ca.odell.glazedlists.SortedList
-
Packages that use SortedList Package Description ca.odell.glazedlists ca.odell.glazedlists.gui ca.odell.glazedlists.swing -
-
Uses of SortedList in ca.odell.glazedlists
Methods in ca.odell.glazedlists that return SortedList Modifier and Type Method Description static <E extends java.lang.Comparable<? super E>>
SortedList<E>SortedList. create(EventList<E> source)
Creates aSortedList
that sorts the specifiedEventList
. -
Uses of SortedList in ca.odell.glazedlists.gui
Fields in ca.odell.glazedlists.gui declared as SortedList Modifier and Type Field Description protected SortedList<E>
AbstractTableComparatorChooser. sortedList
the sorted list to choose the comparators forConstructors in ca.odell.glazedlists.gui with parameters of type SortedList Constructor Description AbstractTableComparatorChooser(SortedList<E> sortedList, TableFormat<? super E> tableFormat)
Create aAbstractTableComparatorChooser
that sorts the specifiedSortedList
over the specified columns. -
Uses of SortedList in ca.odell.glazedlists.swing
Methods in ca.odell.glazedlists.swing with parameters of type SortedList Modifier and Type Method Description static <E> TableComparatorChooser<E>
TableComparatorChooser. install(javax.swing.JTable table, SortedList<E> sortedList, java.lang.Object strategy)
Installs a new TableComparatorChooser that responds to clicks on the header of the specified table and uses them to sort the specifiedsortedList
by delegating to the givenstrategy
If at any time the table should no longer sort, the behaviour can be removed callingTableComparatorChooser.dispose()
on the object returned by this method.static <E> TableComparatorChooser<E>
TableComparatorChooser. install(javax.swing.JTable table, SortedList<E> sortedList, java.lang.Object strategy, TableFormat<? super E> tableFormat)
Installs a new TableComparatorChooser that responds to clicks on the header of the specified table and uses them to sort the specifiedsortedList
by delegating to the givenstrategy
If at any time the table should no longer sort, the behaviour can be removed callingTableComparatorChooser.dispose()
on the object returned by this method.Constructors in ca.odell.glazedlists.swing with parameters of type SortedList Constructor Description TableComparatorChooser(javax.swing.JTable table, SortedList<E> sortedList, boolean multipleColumnSort)
Deprecated.replaced withTableComparatorChooser.install(javax.swing.JTable, ca.odell.glazedlists.SortedList<E>, java.lang.Object)
, which is functionally identical but uses a more fitting name to convey the action that is performed and fixes an API flaw by explicitly requiring the TableFormat.TableComparatorChooser(javax.swing.JTable table, SortedList<E> sortedList, java.lang.Object strategy)
Deprecated.9/25/06 replaced withTableComparatorChooser.install(javax.swing.JTable, ca.odell.glazedlists.SortedList<E>, java.lang.Object)
, which is functionally identical but uses a more fitting name to convey the action that is performed and fixes an API flaw by explicitly requiring the TableFormat.TableComparatorChooser(javax.swing.JTable table, SortedList<E> sortedList, java.lang.Object strategy, TableFormat<? super E> tableFormat)
Creates and installs a TableComparatorChooser.
-