Example usage for org.apache.wicket.markup.repeater.data ListDataProvider subclass-usage

List of usage examples for org.apache.wicket.markup.repeater.data ListDataProvider subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.repeater.data ListDataProvider subclass-usage.

Usage

From source file cz.dynawest.wicket.ListColumnGridDataProvider.java

/**
 * Allows the use of lists with {@link DataView}. The only requirement is that either list items
 * must be serializable or model(Object) needs to be overridden to provide the proper model
 * implementation.
 * 
 * @author Ondrej Zizka

From source file cz.zcu.kiv.eegdatabase.wui.ui.search.SearchResultDataProvider.java

/**
 * Holds search result data.
 * User: Jan Koren
 * Date: 27.3.13
 */
public class SearchResultDataProvider extends ListDataProvider<FullTextResult> {

From source file org.artifactory.common.wicket.component.table.masterdetail.DetailsDataProvider.java

/**
 * @author Yoav Aharoni
 */
@SuppressWarnings({ "unchecked" })
class DetailsDataProvider<M extends Serializable, D extends Serializable> extends ListDataProvider {
    private final M master;

From source file org.cdlflex.ui.markup.html.repeater.data.table.SortableListDataProvider.java

/**
 * Extends a {@code ListDataProvider} and provides the {@code ISortableDataProvider} interface. It uses a very primitive
 * sorting technique namely by comparing the string values of the respective columns (which will work for most data).
 * 
 * @param <T> the type of the provided data model
 * @param <S> the type of the sorting parameter