Class MouseAdapter

java.lang.Object
io.guise.framework.event.MouseAdapter
All Implemented Interfaces:
GuiseEventListener, MouseListener, EventListener
Direct Known Subclasses:
AbstractComponent.AbstractFlyoverStrategy

public abstract class MouseAdapter extends Object implements MouseListener
An abstract mouse listener providing default method implementations.
Author:
Garret Wilson
  • Constructor Details

    • MouseAdapter

      public MouseAdapter()
  • Method Details

    • mouseClicked

      public void mouseClicked(MouseClickEvent mouseClickEvent)
      Description copied from interface: MouseListener
      Called when the mouse clicks the target.
      Specified by:
      mouseClicked in interface MouseListener
      Parameters:
      mouseClickEvent - The event providing mouse information
    • mouseEntered

      public void mouseEntered(MouseEnterEvent mouseEnterEvent)
      Description copied from interface: MouseListener
      Called when the mouse enters the target.
      Specified by:
      mouseEntered in interface MouseListener
      Parameters:
      mouseEnterEvent - The event providing mouse information
    • mouseExited

      public void mouseExited(MouseExitEvent mouseEnterEvent)
      Description copied from interface: MouseListener
      Called when the mouse exits the target.
      Specified by:
      mouseExited in interface MouseListener
      Parameters:
      mouseEnterEvent - The event providing mouse information