org.devocative.wickomp.grid.IGridAsyncDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wickomp Show documentation
Show all versions of wickomp Show documentation
Web components for Apache Wicket
package org.devocative.wickomp.grid;
import java.util.List;
public interface IGridAsyncDataSource extends IDataSource {
/**
* This method returns a page of result
*
* @param pageIndex page number during pagination process starts with 1
* @param pageSize size of a page during pagination process
* @param sortFields list of fields for sorting the result (optional)
*/
void asyncList(long pageIndex, long pageSize, List sortFields);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy