Uses of Class
com.sun.data.provider.SortCriteria

Packages that use SortCriteria
com.sun.data.provider Fundamental data access APIs and event listeners. 
com.sun.data.provider.impl Concrete DataProvider implementations and base classes. 
 

Uses of SortCriteria in com.sun.data.provider
 

Methods in com.sun.data.provider that return SortCriteria
 SortCriteria[] TableDataSorter.getSortCriteria()
          Returns the current sort criteria on this data sorter.
 

Methods in com.sun.data.provider with parameters of type SortCriteria
 void TableDataSorter.setSortCriteria(SortCriteria[] sortCriteria)
          Sets the sort criteria on this data sorter.
 

Uses of SortCriteria in com.sun.data.provider.impl
 

Subclasses of SortCriteria in com.sun.data.provider.impl
 class FieldIdSortCriteria
          The FieldIdSortCriteria class is an implementation of SortCriteria that simply retrieves the sort value from the TableDataProvider for the current RowKey using the specified fieldId, which is used to dynamically retrieve a FieldKey.
 class FieldKeySortCriteria
          The FieldKeySortCriteria class is an implementation of SortCriteria that simply retrieves the sort value from the TableDataProvider for the current RowKey using the specified FieldKey.
 

Fields in com.sun.data.provider.impl declared as SortCriteria
protected  SortCriteria[] BasicTableDataSorter.sortCriteria
          Storage for the sort criteria
 

Methods in com.sun.data.provider.impl that return SortCriteria
 SortCriteria[] BasicTableDataSorter.getSortCriteria()
          

Returns the current sort criteria on this data sorter.

 

Methods in com.sun.data.provider.impl with parameters of type SortCriteria
 void BasicTableDataSorter.setSortCriteria(SortCriteria[] sortCriteria)
          

Sets the sort criteria on this data sorter.

 

Constructors in com.sun.data.provider.impl with parameters of type SortCriteria
BasicTableDataSorter(SortCriteria[] sortCriteria)
          Constructs a BasicTableDataSorter with the specified initial sort criteria and no locale setting.
BasicTableDataSorter(SortCriteria[] sortCriteria, java.util.Locale sortLocale)
          Constructs a BasicTableDataSorter with the specified initial sort criteria and sort locale.