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 SummaryAll 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- 
handleMovementboolean handleMovement(AbstractMouseDestination destination) Deprecated.- Specified by:
- handleMovementin interface- MouseAlgorithm
 
 - 
handleClickdefault 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 interface- MouseAlgorithm
- Returns:
 
 
- 
 
-