We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.data.
Interface Container.Indexed.ItemRemoveEvent
-
All Superinterfaces:
All Known Implementing Classes:
AbstractInMemoryContainer.BaseItemRemoveEvent, GeneratedPropertyContainer.GeneratedItemRemoveEvent
Enclosing interface:
public static interface Container.Indexed.ItemRemoveEvent extends Container.ItemSetChangeEvent
An
Event
object specifying information about the removed items.Since:
7.4
-
-
Method Summary
All Methods Modifier and Type Method and 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
-
-