com.vinay.ui.vinui.fw.core
Class UIEventAdapter

java.lang.Object
  extended bycom.vinay.ui.vinui.fw.core.UIEventAdapter
All Implemented Interfaces:
java.util.EventListener, UIEventListener

public class UIEventAdapter
extends java.lang.Object
implements UIEventListener

A convenience class for UI Event Listeners. The appropriate method can be implemented for a listener on a Control

Author:
Vinay Nath

Constructor Summary
UIEventAdapter()
           
 
Method Summary
 void onClick(UIEvent e)
           
 void onDblClick(UIEvent e)
           
 void onKeyDown(UIEvent e)
           
 void onKeyPress(UIEvent e)
           
 void onKeyUp(UIEvent e)
           
 void onMouseDown(UIEvent e)
           
 void onMouseMove(UIEvent e)
           
 void onMouseOut(UIEvent e)
           
 void onMouseOver(UIEvent e)
           
 void onMouseUp(UIEvent e)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UIEventAdapter

public UIEventAdapter()
Method Detail

onClick

public void onClick(UIEvent e)
Specified by:
onClick in interface UIEventListener

onDblClick

public void onDblClick(UIEvent e)
Specified by:
onDblClick in interface UIEventListener

onMouseDown

public void onMouseDown(UIEvent e)
Specified by:
onMouseDown in interface UIEventListener

onMouseUp

public void onMouseUp(UIEvent e)
Specified by:
onMouseUp in interface UIEventListener

onMouseOver

public void onMouseOver(UIEvent e)
Specified by:
onMouseOver in interface UIEventListener

onMouseMove

public void onMouseMove(UIEvent e)
Specified by:
onMouseMove in interface UIEventListener

onMouseOut

public void onMouseOut(UIEvent e)
Specified by:
onMouseOut in interface UIEventListener

onKeyPress

public void onKeyPress(UIEvent e)
Specified by:
onKeyPress in interface UIEventListener

onKeyUp

public void onKeyUp(UIEvent e)
Specified by:
onKeyUp in interface UIEventListener

onKeyDown

public void onKeyDown(UIEvent e)
Specified by:
onKeyDown in interface UIEventListener