com.webcab.chat.gui
Class CaptionViewAdapter

java.lang.Object
  |
  +--com.webcab.chat.gui.CaptionViewAdapter
All Implemented Interfaces:
CaptionViewListener, java.util.EventListener

public abstract class CaptionViewAdapter
extends java.lang.Object
implements CaptionViewListener

The abstract class which implements empty methods from CaptionViewListener. This class is made in order to ease the creation of listeners, so instead of defining all the methods of the listener class, extend this class and override the ones you wish.

See Also:
CaptionViewAdapter, CaptionView

Constructor Summary
CaptionViewAdapter()
           
 
Method Summary
abstract  void mouseLeftClicked(java.lang.Object o)
          Invoked when the right mouse button clicks in the active area of the CaptionView component.
abstract  void mouseRightClicked(java.lang.Object o)
          Invoked when the right mouse button clicks in the active area of the CaptionView component.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CaptionViewAdapter

public CaptionViewAdapter()
Method Detail

mouseRightClicked

public abstract void mouseRightClicked(java.lang.Object o)
Invoked when the right mouse button clicks in the active area of the CaptionView component.
Specified by:
mouseRightClicked in interface CaptionViewListener
Parameters:
o - The invoking CaptionView bean.
See Also:
mouseLeftClicked(java.lang.Object)

mouseLeftClicked

public abstract void mouseLeftClicked(java.lang.Object o)
Invoked when the right mouse button clicks in the active area of the CaptionView component.
Specified by:
mouseLeftClicked in interface CaptionViewListener
Parameters:
o - The invoking CaptionView bean.
See Also:
mouseRightClicked(java.lang.Object)