Package com.vaadin.data
Interface Container.Indexed.ItemRemoveEvent
-
- All Superinterfaces:
Container.ItemSetChangeEvent
,Serializable
- All Known Implementing Classes:
AbstractInMemoryContainer.BaseItemRemoveEvent
,GeneratedPropertyContainer.GeneratedItemRemoveEvent
- Enclosing interface:
- Container.Indexed
public static interface Container.Indexed.ItemRemoveEvent extends Container.ItemSetChangeEvent
AnEvent
object specifying information about the removed items.- Since:
- 7.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFirstIndex()
Gets the index of the first removed item.Object
getFirstItemId()
Gets the item id of the first removed item.int
getRemovedItemsCount()
Gets the number of the removed items.-
Methods inherited from interface com.vaadin.data.Container.ItemSetChangeEvent
getContainer
-
-
-
-
Method Detail
-
getFirstItemId
Object getFirstItemId()
Gets the item id of the first removed item.- Returns:
- item id of the first removed item
-
getFirstIndex
int getFirstIndex()
Gets the index of the first removed item.- Returns:
- index of the first removed item
-
getRemovedItemsCount
int getRemovedItemsCount()
Gets the number of the removed items.- Returns:
- the number of removed items
-
-