![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.data.shared.loader.PagingLoadResult 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;
/**
* A LoadResult
for paging loaders.
*/
public interface PagingLoadResult extends ListLoadResult {
/**
* Returns the current offset of the results.
*
* @return the offset
*/
public int getOffset();
/**
* Returns the total count. This value will not equal the number of records
* being returned when paging is used.
*
* @return the total count
*/
public int getTotalLength();
/**
* Sets the offset.
*
* @param offset the offset
*/
public void setOffset(int offset);
/**
* Sets the total length.
*
* @param totalLength the total length
*/
public void setTotalLength(int totalLength);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy