![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.data.shared.loader.ListLoadConfig Maven / Gradle / Ivy
/**
* Sencha GXT 3.1.0-beta - Sencha for GWT
* Copyright(c) 2007-2014, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.sencha.gxt.data.shared.loader;
import java.io.Serializable;
import java.util.List;
import com.sencha.gxt.data.shared.SortInfo;
/**
* Load config interface for list based data. Adds support for sort information.
*/
public interface ListLoadConfig extends Serializable {
/**
* Returns the sort info.
*/
List extends SortInfo> getSortInfo();
/**
* Sets the sort info.
*/
void setSortInfo(List extends SortInfo> info);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy