Interface ContiguousSelectProvider
public interface ContiguousSelectProvider
Provides a logic for ContiguousSelectAction.
- Since:
- 2.17
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Called to resolve whether a selection is allowed.void
select
(ContiguousSelectEvent event) Should perform the selection.
-
Method Details
-
isSelectionAllowed
Called to resolve whether a selection is allowed.- Parameters:
event
- the range select event- Returns:
- true, if allowed; false, if not
-
select
Should perform the selection. Call event.getSelectionType() to resolve the type of selection.- Parameters:
event
- the range select event
-