Interface MultiValueSelectView<E>
- Type Parameters:
E
- the type of elements handled by the multi-value select view
- All Known Implementing Classes:
MultiValueSelectDialog
public interface MultiValueSelectView<E>
Interface for a multi-value select view component.
Represents the contract for components that support multi-value selection,
allowing selection of multiple values and providing customization
through the
MultiValueSelectView.MultiValueSelectContext
.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Context class providing parameters required for generating multi-value select components. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns the selected values in the current multi-value select component.void
Sets the context for generating multi-value select components.
-
Method Details
-
setMultiValueSelectContext
Sets the context for generating multi-value select components.- Parameters:
context
- theMultiValueSelectView.MultiValueSelectContext
containing parameters and handlers required for configuring and managing the multi-value select component
-
getValue
Returns the selected values in the current multi-value select component.- Returns:
- a list of selected values
-