blob: 9153b894f825aaa2c8f59c552b001eb02a7f03db [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.vaadin.databinding.container;
import java.util.List;
import com.vaadin.data.Container;
// TODO: Auto-generated Javadoc
/**
* ECView databinding needs to access ALL item ids. Filters and sort orders must
* not change the underlying domain model.
*
* @param <ITEM>
* the generic type
*/
public interface IEnhancedFilterableContainer<ITEM> extends
Container.Filterable {
/**
* Returns a collection of unfiltered item ides.
*
* @return the unfiltered item ids
*/
List<ITEM> getUnfilteredItemIds();
/**
* Returns the size of the unfiltered item ids.
*
* @return the int
*/
int sizeUnfiltered();
}