com.jxcell
Interface ObjectListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
JBookApplet

public interface ObjectListener
extends java.util.EventListener

The listener interface for receiving Object events


Method Summary
 void objectClicked(ObjectEvent objectevent)
          This method is called to notify the listener of a single-click event occuring on the object
 void objectDblClicked(ObjectEvent objectevent)
          The method is called to notify the listener of a double-click event occuring on the object
 void objectGotFocus(ObjectEvent objectevent)
          As each object gains keyboard focus, this method is called to notify all listeners of this new state
 void objectLostFocus(ObjectEvent objectevent)
          When an object loses keyboard focus, this method notifies registered listeners of this change in state
 void objectValueChanged(ObjectEvent objectevent)
          Whenever the "value" of an object changes (applicable to checkboxes and list boxes) this method notifies the listener of this change
 

Method Detail

objectClicked

void objectClicked(ObjectEvent objectevent)
This method is called to notify the listener of a single-click event occuring on the object

Parameters:
objectevent - A single-click event

objectDblClicked

void objectDblClicked(ObjectEvent objectevent)
The method is called to notify the listener of a double-click event occuring on the object

Parameters:
objectevent - A double-click event

objectGotFocus

void objectGotFocus(ObjectEvent objectevent)
As each object gains keyboard focus, this method is called to notify all listeners of this new state

Parameters:
objectevent - An object gains keyboard focus event

objectLostFocus

void objectLostFocus(ObjectEvent objectevent)
When an object loses keyboard focus, this method notifies registered listeners of this change in state

Parameters:
objectevent - An object loses keyboard focus event

objectValueChanged

void objectValueChanged(ObjectEvent objectevent)
Whenever the "value" of an object changes (applicable to checkboxes and list boxes) this method notifies the listener of this change

Parameters:
objectevent - A "value" change in a checkbox or list box