Package com.sencha.gxt.data.shared
Interface SortInfo
-
- All Superinterfaces:
com.google.web.bindery.requestfactory.shared.BaseProxy
,com.google.web.bindery.requestfactory.shared.ValueProxy
- All Known Implementing Classes:
SortInfoBean
public interface SortInfo extends com.google.web.bindery.requestfactory.shared.ValueProxy
Aggregates sort field and sort direction.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortDir
getSortDir()
Returns the sort direction.String
getSortField()
Returns the sort field.void
setSortDir(SortDir sortDir)
Sets the sort direction.void
setSortField(String sortField)
Sets the sort field.
-
-
-
Method Detail
-
getSortDir
SortDir getSortDir()
Returns the sort direction.- Returns:
- the sort direction
-
getSortField
String getSortField()
Returns the sort field.- Returns:
- the sort field
-
setSortDir
void setSortDir(SortDir sortDir)
Sets the sort direction.- Parameters:
sortDir
- the sort direction
-
setSortField
void setSortField(String sortField)
Sets the sort field.- Parameters:
sortField
- the sort field
-
-