Package com.teamdev.jxbrowser.ui.event
Class MouseEntered.Builder
java.lang.Object
com.teamdev.jxbrowser.ui.event.MouseEntered.Builder
- Enclosing interface:
- MouseEntered
A builder of
MouseEntered
.
Builders are created by invoking MouseEntered.newBuilder(Point)
.
Each of the setter methods modifies the state of the builder and returns the same instance.
Builders are not thread-safe and should not be used concurrently from multiple threads
without external synchronization.
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Returns a newMouseEntered
instance built from the current state of this builder.button
(MouseButton mouseButton) Sets the button that is pressed.keyModifiers
(KeyModifiers keyModifiers) Sets the keyboard modifiers applied.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.mouseModifiers
(MouseModifiers mouseModifiers) Sets the mouse modifiers applied.
-
Method Details
-
locationOnScreen
Sets the mouse position relative to the bounds of the screen.- Parameters:
locationOnScreen
- the mouse position- Returns:
- this builder
-
button
Sets the button that is pressed.- Parameters:
mouseButton
- the pressed button- Returns:
- this builder
-
keyModifiers
Sets the keyboard modifiers applied.- Parameters:
keyModifiers
- the keyboard modifiers- Returns:
- this builder
-
mouseModifiers
Sets the mouse modifiers applied.- Parameters:
mouseModifiers
- the mouse modifiers- Returns:
- this builder
-
build
Returns a newMouseEntered
instance built from the current state of this builder.- Returns:
- a new
MouseEntered
instance
-