Example usage for org.apache.wicket.extensions.markup.html.repeater.data.table ISortableDataProvider interface-usage

List of usage examples for org.apache.wicket.extensions.markup.html.repeater.data.table ISortableDataProvider interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.repeater.data.table ISortableDataProvider interface-usage.

Usage

From source file com.doculibre.constellio.wicket.components.sort.SortablePageableListViewDataProvider.java

/**
 * 
 * 
 * @author Vincent Dussault
 */
@SuppressWarnings("serial")

From source file de.alpharogroup.wicket.data.provider.AbstractSortableDataProvider.java

/**
 * The Class {@link AbstractSortableDataProvider}.
 *
 * @param <T>
 *            the generic type of the Model for the DataProvider.
 * @param <S>

From source file de.alpharogroup.wicket.data.provider.AbstractSortableFilterDataProvider.java

/**
 * The Class {@link AbstractSortableFilterDataProvider} is an abstract generic implementation for
 * the ISortableDataProvider and the IFilterStateLocator interface.
 *
 * @author Asterios Raptis
 * @param <T>

From source file eu.schulteweb.wicket.datatables.markup.html.repeater.util.JSONProvider.java

public class JSONProvider<T> implements ISortableDataProvider<T, String> {

    private ISortableDataProvider<T, String> dataProvider;

    public JSONProvider(ISortableDataProvider<T, String> dataProvider) {
        this.dataProvider = dataProvider;

From source file net.databinder.models.hib.SortableHibernateProvider.java

/**
 * <h1>SortableHibernateProvider</h1>
 * <i>Copyright (C) 2008 The Scripps Research Institute</i>
 * <p>A HibernateProvider extension that implements ISortableDataProvider so it can be used with a DefaultDataTable or an AjaxFallbackDefaultDataTable
 * The CriteriaBuilder that handles the sorting should also implement ISortStateLocator (such as CriteriaSorter).</p>
 * 

From source file org.apache.karaf.webconsole.core.table.advanced.AdvancedDataProvider.java

/**
 * Marker interface for data providers.
 *
 * @param <T> Type of the model.
 */
public interface AdvancedDataProvider<T> extends ISortableDataProvider<T, String> {

From source file org.cast.cwm.data.provider.AuditDataProvider.java

/**
 * A sortable DataProvider for views of audit data.
 * Can be constructed with any {@link ISortableAuditQueryBuilder}
 * 
 * @author bgoldowsky
 *

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

From source file org.devproof.portal.core.module.common.dataprovider.QueryDataProvider.java

/**
 * A generic data provider with query objects
 *
 * @param <T> Entity type
 * @author Carsten Hufe
 */

From source file org.devproof.portal.core.module.common.dataprovider.SortableQueryDataProvider.java

/**
 * @author Carsten Hufe
 */
public interface SortableQueryDataProvider<T, SQ extends Serializable>
        extends ISortableDataProvider<T>, QueryDataProvider<T, SQ> {
}