Interface MouseMovementAlgorithm
-
- All Superinterfaces:
MouseAlgorithm
- All Known Implementing Classes:
StandardMouseAlgorithm
@Deprecated public interface MouseMovementAlgorithm extends MouseAlgorithm
Deprecated.seeMouseAlgorithmand implement that instead of this.Algorithm to handle only the mouse movement, kept here for backwards compatibility.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default booleanhandleClick(MouseButton button)Deprecated.Handles the clicking process.booleanhandleMovement(AbstractMouseDestination destination)Deprecated.
-
-
-
Method Detail
-
handleMovement
boolean handleMovement(AbstractMouseDestination destination)
Deprecated.- Specified by:
handleMovementin interfaceMouseAlgorithm
-
handleClick
default boolean handleClick(MouseButton button)
Deprecated.Description copied from interface:MouseAlgorithmHandles the clicking process. If you wish to use theStandardMouseAlgorithm.handleClick(MouseButton)You can implement this method to call {@link Mouse#getDefaultMouseAlgorithm()#handleClick(MouseButton)}- Specified by:
handleClickin interfaceMouseAlgorithm- Returns:
-
-