Class FilterRowComboUpdateEvent
java.lang.Object
org.eclipse.nebula.widgets.nattable.filterrow.combobox.FilterRowComboUpdateEvent
Event class that is used to inform about updates to the filter row combo box
items.
-
Constructor Summary
ConstructorDescriptionFilterRowComboUpdateEvent
(int columnIndex, Collection<?> addedItems, Collection<?> removedItems) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addUpdate
(int columnIndex, Collection<?> addedItems, Collection<?> removedItems) Collection<?>
Collection<?>
getAddedItems
(int update) int
int
getColumnIndex
(int update) Collection<?>
Collection<?>
getRemovedItems
(int update) toString()
int
-
Constructor Details
-
FilterRowComboUpdateEvent
public FilterRowComboUpdateEvent(int columnIndex, Collection<?> addedItems, Collection<?> removedItems) - Parameters:
columnIndex
- The column index of the column for which the filter row combo value cache was updated.addedItems
- The items that was added to the value cache for the set column index.removedItems
- The items that was removed from the value cache for the set column index.
-
-
Method Details
-
addUpdate
- Parameters:
columnIndex
- The column index of the column for which the filter row combo value cache was updated.addedItems
- The items that was added to the value cache for the set column index.removedItems
- The items that was removed from the value cache for the set column index.- Since:
- 2.1
-
getColumnIndex
public int getColumnIndex()- Returns:
- The column index of the column for which the filter row combo value cache was updated.
-
getAddedItems
- Returns:
- The items that was added to the value cache for the set column index.
-
getRemovedItems
- Returns:
- The items that was removed from the value cache for the set column index.
-
getColumnIndex
public int getColumnIndex(int update) - Parameters:
update
- The index of the update content transfered by this event.- Returns:
- The column index of the column for which the filter row combo value cache was updated.
- Since:
- 2.1
-
getAddedItems
- Parameters:
update
- The index of the update content transfered by this event.- Returns:
- The items that was added to the value cache for the set column index.
- Since:
- 2.1
-
getRemovedItems
- Parameters:
update
- The index of the update content transfered by this event.- Returns:
- The items that was removed from the value cache for the set column index.
- Since:
- 2.1
-
updateContentSize
public int updateContentSize()- Returns:
- The number of update contents transfered by this event.
- Since:
- 2.1
-
toString
-