本文整理汇总了Java中com.extjs.gxt.ui.client.data.DataReader类的典型用法代码示例。如果您正苦于以下问题:Java DataReader类的具体用法?Java DataReader怎么用?Java DataReader使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DataReader类属于com.extjs.gxt.ui.client.data包,在下文中一共展示了DataReader类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: load
import com.extjs.gxt.ui.client.data.DataReader; //导入依赖的package包/类
@Override
public void load(DataReader<PagingLoadResult<DashboardContact>> reader, Object loadConfig, AsyncCallback<PagingLoadResult<DashboardContact>> callback) {
FilterPagingLoadConfig config = (FilterPagingLoadConfig)loadConfig;
List<DashboardContact> results;
int totalLength = 0;
int offset = config.getOffset();
if (ClientUtils.isEmpty(allContacts)) {
results = Collections.emptyList();
} else {
sortContacts(config.getSortInfo());
List<DashboardContact> filteredList = filterContacts(config.getFilterConfigs());
totalLength = filteredList.size();
if (offset > totalLength) {
offset = 0;
}
int limit = offset + config.getLimit();
if (limit >= totalLength) {
limit = totalLength;
}
results = filteredList.subList(offset, limit);
}
callback.onSuccess(new BasePagingLoadResult<DashboardContact>(results, offset, totalLength));
}
示例2: MyPagingLoader
import com.extjs.gxt.ui.client.data.DataReader; //导入依赖的package包/类
public MyPagingLoader(DataProxy proxy, DataReader reader) {
super(proxy, reader);
// TODO Auto-generated constructor stub
}