Example usage for org.apache.wicket.extensions.markup.html.repeater.data.sort ISortStateLocator interface-usage

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

Introduction

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

Usage

From source file com.googlecode.wicketwebbeans.databinder.DataSorter.java

/**
 * A Databinder/Hibernate sorting component suitable for adding to a BeanTablePanel in conjunction
 * with a DatabinderProvider. A typical use case might be:
 * 
 *  DataSorter sorter = new DataSorter(metaData.getParameter("orderBy"));
 *  IDataProvider provider = new DatabinderProvider(beanClass,

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

/**
 * Abstract base class for building OrderedCriteriaBuilders. Uses an ISortStateLocator to configure
 * the sorting.  Subclasses should call super.buildUnordered() when overriding.
 * 
 * @author Mark Southern
 */

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

/**
 * <h1>CriteriaSorter</h1>
 * <i>Copyright (C) 2008 The Scripps Research Institute</i>
 * <p>A Criteria based sorter suitable for adding to a HibernateProvider</p> 
 *  * <pre>
 * // a default sort by name, ascending and case insensitive: 

From source file org.artifactory.common.wicket.component.table.groupable.provider.IGroupStateLocator.java

/**
 * @author Yoav Aharoni
 */
public interface IGroupStateLocator extends ISortStateLocator {
    SortParam getGroupParam();

From source file org.cast.cwm.data.builders.LoginSessionCriteriaBuilder.java

public class LoginSessionCriteriaBuilder
        implements CriteriaBuilder, OrderingCriteriaBuilder, ISortStateLocator<String> {

    @Getter
    @Setter
    private ISortState<String> sortState;

From source file org.cast.cwm.data.builders.ResponseCriteriaBuilder.java

@Getter
@Setter

// TODO: ResponseType should be a set
public class ResponseCriteriaBuilder
        implements CriteriaBuilder, OrderingCriteriaBuilder, ISortStateLocator<String>, IDetachable {

From source file org.cast.cwm.data.builders.UserCriteriaBuilder.java

/**
 * <p>
 * An object used to query for {@link User} object(s).
 * </p>
 * <p>
 * NOTE: By default, this query will return both

From source file org.sakaiproject.sitestats.tool.wicket.providers.infinite.SortableInfiniteDataProvider.java

/**
 * Interface to combine InfiteDataProvider and ISortStateLocator interfaces into a single interface
 * @author plukasew
 */
public interface SortableInfiniteDataProvider<T, S> extends InfiniteDataProvider<T>, ISortStateLocator<S> {
    // empty

From source file org.sakaiproject.wicket.markup.html.repeater.util.SortableListDataProvider.java

public class SortableListDataProvider implements IDataProvider, ISortStateLocator, IDetachable {

    private static final long serialVersionUID = 1L;

    private List list;

From source file org.wintersleep.wicket.hibernate.CriteriaSorter.java

public class CriteriaSorter implements ISortStateLocator<String>, CriteriaBuilder {

    private SingleSortState<String> sortState = new SingleSortState<>();

    public void build(Criteria criteria) {
        SortParam<String> sort = sortState.getSort();