![JAR search and dependency download from the Maven repository](/logo.png)
com.extjs.gxt.ui.client.data.ListLoadConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Sencha GXT 2.3.1 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.data;
import com.extjs.gxt.ui.client.Style.SortDir;
/**
* Load config interface for list based data.
*/
public interface ListLoadConfig extends LoadConfig {
/**
* Returns the current sort direction.
*
* @return the sort direction
*/
public SortDir getSortDir();
/**
* Returns the current sort field.
*
* @return the sort field
*/
public String getSortField();
/**
* Returns the sort info.
*/
public SortInfo getSortInfo();
/**
* Sets the sort direction.
*
* @param sortDir the sort direction
*/
public void setSortDir(SortDir sortDir);
/**
* Sets the sort field.
*
* @param sortField the sort field
*/
public void setSortField(String sortField);
/**
* Sets the sort info.
*/
public void setSortInfo(SortInfo info);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy