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.ItemAddEvent
-
All Superinterfaces:
All Known Implementing Classes:
AbstractInMemoryContainer.BaseItemAddEvent, GeneratedPropertyContainer.GeneratedItemAddEvent
Enclosing interface:
public static interface Container.Indexed.ItemAddEvent extends Container.ItemSetChangeEvent
An
Event
object specifying information about the added items.Since:
7.4
-
-
Method Summary
All Methods Modifier and Type Method and Description int
getAddedItemsCount()
Gets the number of the added items.
int
getFirstIndex()
Gets the index of the first added item.
Object
getFirstItemId()
Gets the item id of the first added item.
-
Methods inherited from interface com.vaadin.data.Container.ItemSetChangeEvent
getContainer
-
-
-
-
Method Detail
-
getFirstItemId
Object getFirstItemId()
Gets the item id of the first added item.
Returns:
item id of the first added item
-
getFirstIndex
int getFirstIndex()
Gets the index of the first added item.
Returns:
index of the first added item
-
getAddedItemsCount
int getAddedItemsCount()
Gets the number of the added items.
Returns:
the number of added items.
-
-