Uses of Class
org.jdesktop.swingx.decorator.SortKey

Packages that use SortKey
org.jdesktop.swingx.decorator Contains API used to implement coordinated sorting, filtering and highlighting of the extended Swing cell-rendering component classes JXTable, JXTreeTable, JXTree, and JXList. 
 

Uses of SortKey in org.jdesktop.swingx.decorator
 

Methods in org.jdesktop.swingx.decorator that return SortKey
static SortKey SortKey.getFirstSortingKey(List<? extends SortKey> keys)
          Returns the first SortKey in the list which is sorted.
static SortKey SortKey.getFirstSortKeyForColumn(List<? extends SortKey> keys, int modelColumn)
          Returns the first SortKey in the list for the given column, or null if the column has no SortKey.
 SortKey Sorter.getSortKey()
           
 

Methods in org.jdesktop.swingx.decorator that return types with arguments of type SortKey
 List<? extends SortKey> FilterPipeline.SorterBasedSortController.getSortKeys()
           
 List<? extends SortKey> SortController.getSortKeys()
          List the sort order by column.
 

Methods in org.jdesktop.swingx.decorator with parameters of type SortKey
protected  Sorter FilterPipeline.SorterBasedSortController.createDefaultSorter(SortKey sortKey)
          creates a Sorter initialized with sortKey
 void Sorter.setSortKey(SortKey sortKey)
          Updates itself according to the SortKey's properties.
 

Method parameters in org.jdesktop.swingx.decorator with type arguments of type SortKey
static SortKey SortKey.getFirstSortingKey(List<? extends SortKey> keys)
          Returns the first SortKey in the list which is sorted.
static SortKey SortKey.getFirstSortKeyForColumn(List<? extends SortKey> keys, int modelColumn)
          Returns the first SortKey in the list for the given column, or null if the column has no SortKey.
 void FilterPipeline.SorterBasedSortController.setSortKeys(List<? extends SortKey> keys)
           
 void SortController.setSortKeys(List<? extends SortKey> keys)
          Set the sort order by column.