Interface MouseListener

All Superinterfaces:
EventListener, GuiseEventListener
All Known Subinterfaces:
Component.FlyoverStrategy<S>
All Known Implementing Classes:
AbstractComponent.AbstractFlyoverFrameStrategy, AbstractComponent.AbstractFlyoverStrategy, AbstractComponent.DefaultFlyoverStrategy, MouseAdapter

public interface MouseListener extends GuiseEventListener
An object that listens for mouse events.
Author:
Garret Wilson
  • Method Details

    • mouseClicked

      void mouseClicked(MouseClickEvent mouseClickEvent)
      Called when the mouse clicks the target.
      Parameters:
      mouseClickEvent - The event providing mouse information
    • mouseEntered

      void mouseEntered(MouseEnterEvent mouseEnterEvent)
      Called when the mouse enters the target.
      Parameters:
      mouseEnterEvent - The event providing mouse information
    • mouseExited

      void mouseExited(MouseExitEvent mouseExitEvent)
      Called when the mouse exits the target.
      Parameters:
      mouseExitEvent - The event providing mouse information