javax.rad.ui.event
Interface IMouseListener


public interface IMouseListener

Platform and technology independent mouse listener definition. It is designed for use with AWT, Swing, SWT, JSP, JSF, ... .

See Also:
MouseListener

Method Summary
 void mouseClicked(UIMouseEvent pMouseEvent)
          Invoked when the mouse button has been clicked (pressed and released) on a component.
 void mouseEntered(UIMouseEvent pMouseEvent)
          Invoked when the mouse enters a component.
 void mouseExited(UIMouseEvent pMouseEvent)
          Invoked when the mouse exits a component.
 void mousePressed(UIMouseEvent pMouseEvent)
          Invoked when a mouse button has been pressed on a component.
 void mouseReleased(UIMouseEvent pMouseEvent)
          Invoked when a mouse button has been released on a component.
 

Method Detail

mouseClicked

void mouseClicked(UIMouseEvent pMouseEvent)
Invoked when the mouse button has been clicked (pressed and released) on a component.

Parameters:
pMouseEvent - the mouse event.

mousePressed

void mousePressed(UIMouseEvent pMouseEvent)
Invoked when a mouse button has been pressed on a component.

Parameters:
pMouseEvent - the mouse event.

mouseReleased

void mouseReleased(UIMouseEvent pMouseEvent)
Invoked when a mouse button has been released on a component.

Parameters:
pMouseEvent - the mouse event.

mouseEntered

void mouseEntered(UIMouseEvent pMouseEvent)
Invoked when the mouse enters a component.

Parameters:
pMouseEvent - the mouse event.

mouseExited

void mouseExited(UIMouseEvent pMouseEvent)
Invoked when the mouse exits a component.

Parameters:
pMouseEvent - the mouse event.


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.