Uses of Interface
org.springframework.shell.component.view.event.MouseHandler
Packages that use MouseHandler
Package
Description
-
Uses of MouseHandler in org.springframework.shell.component.view.control
Methods in org.springframework.shell.component.view.control that return MouseHandlerModifier and TypeMethodDescriptionAbstractView.getMouseHandler()
Handles mouse events by dispatching registered consumers into an event loop.AppView.getMouseHandler()
ButtonView.getMouseHandler()
DialogView.getMouseHandler()
GridView.getMouseHandler()
MenuBarView.getMouseHandler()
StatusBarView.getMouseHandler()
View.getMouseHandler()
Gets aView
mouseMouseHandler
. -
Uses of MouseHandler in org.springframework.shell.component.view.event
Methods in org.springframework.shell.component.view.event that return MouseHandlerModifier and TypeMethodDescriptionstatic MouseHandler
MouseHandler.neverConsume()
Returns a handler that always returns a non-consumed result.default MouseHandler
MouseHandler.thenConditionally
(MouseHandler other, Predicate<MouseHandler.MouseHandlerResult> predicate) Returns a composed handler that first handlesthis
handler and then handlesother
handler ifpredicate
against result fromthis
matches.default MouseHandler
MouseHandler.thenIfConsumed
(MouseHandler other) Returns a composed handler that first handlesthis
handler and then handlesother
ifthis
consumed an event.default MouseHandler
MouseHandler.thenIfNotConsumed
(MouseHandler other) Returns a composed handler that first handlesthis
handler and then handlesother
ifthis
did not consume an event.Methods in org.springframework.shell.component.view.event with parameters of type MouseHandlerModifier and TypeMethodDescriptiondefault MouseHandler
MouseHandler.thenConditionally
(MouseHandler other, Predicate<MouseHandler.MouseHandlerResult> predicate) Returns a composed handler that first handlesthis
handler and then handlesother
handler ifpredicate
against result fromthis
matches.default MouseHandler
MouseHandler.thenIfConsumed
(MouseHandler other) Returns a composed handler that first handlesthis
handler and then handlesother
ifthis
consumed an event.default MouseHandler
MouseHandler.thenIfNotConsumed
(MouseHandler other) Returns a composed handler that first handlesthis
handler and then handlesother
ifthis
did not consume an event.