| java.lang.Object net.mygwt.ui.client.data.LoadConfig
LoadConfig | public class LoadConfig implements IsSerializable(Code) | | Contains configuration data for a data load operations.
|
Field Summary | |
protected Map | dataMap | public int | limit limit specifies the number of records being requested. | public int | sortDir sortDir specifies the requested sort direction. | public String | sortField sortField specifies the field to sort by. | public int | start start specifies the current cursor. |
Method Summary | |
public Object | getData(String key) Returns the application specific load property for the given name, or
null if it has not been set. | public void | setData(String key, Object config) Sets the application specific load property with the given name. | public String | toString() |
dataMap | protected Map dataMap(Code) | | dataMap contains application specific load properties
|
limit | public int limit(Code) | | limit specifies the number of records being requested.
|
sortDir | public int sortDir(Code) | | sortDir specifies the requested sort direction.
|
sortField | public String sortField(Code) | | sortField specifies the field to sort by.
|
start | public int start(Code) | | start specifies the current cursor.
|
getData | public Object getData(String key)(Code) | | Returns the application specific load property for the given name, or
null if it has not been set.
Parameters: key - the name of the property the value or null if it has not been set |
setData | public void setData(String key, Object config)(Code) | | Sets the application specific load property with the given name.
Parameters: key - the name of the property Parameters: config - the new value for the property |
|
|