Example usage for com.vaadin.v7.data Container.Sortable interface-usage

List of usage examples for com.vaadin.v7.data Container.Sortable interface-usage

Introduction

In this page you can find the example usage for com.vaadin.v7.data Container.Sortable interface-usage.

Usage

From source file com.haulmont.cuba.web.gui.components.table.SortableDataContainer.java

@SuppressWarnings("deprecation")
public class SortableDataContainer<I> extends TableDataContainer<I>
        implements Container.Sortable, TableSortableContainer {

    public SortableDataContainer(TableSource.Sortable<I> tableDataSource,
            TableSourceEventsDelegate<I> dataEventsDelegate) {

From source file com.haulmont.cuba.web.widgets.data.TableSortableContainer.java

@SuppressWarnings("deprecation")
public interface TableSortableContainer extends Container.Sortable {

    void resetSortOrder();
}

From source file org.jpos.qi.EntityContainer.java

public class EntityContainer<T> implements Container.ItemSetChangeNotifier, Container.Sortable, Container.Indexed {
    protected static final int MAX_ENTITY_CACHE_SIZE = 100;
    protected static final int ROW_BUF_SIZE = 100;
    protected static final int ID_TO_INDEX_MAX_SIZE = 500;

    public Class<T> clazz;

From source file org.vaadin.viritin.v7.ListContainer.java

/**
 * A replacement for BeanItemContainer from the core
 * <p>
 * The ListContainer is rather similar to the cores BeanItemContainer, but has
 * better typed API, much smaller memory overhead (practically no overhead if
 * data is given as List) and also otherwise better performance.

From source file org.vaadin.viritinv7.ListContainer.java

/**
 * A replacement for BeanItemContainer from the core
 * <p>
 * The ListContainer is rather similar to the cores BeanItemContainer, but has
 * better typed API, much smaller memory overhead (practically no overhead if
 * data is given as List) and also otherwise better performance.