at.spardat.xma.boot.component
Interface IComponentListener

All Superinterfaces:
java.util.EventListener, java.beans.PropertyChangeListener

public interface IComponentListener
extends java.beans.PropertyChangeListener

This class defines the interface which must be implemented by every object which wishes to be informed of component-events e.g. property-changes.


Method Summary
 void componentClosed(java.util.EventObject event)
          This method is called, when the component is closed.
 void event(NamedEvent event)
          This method is called every time a named event is fired on the component.
 
Methods inherited from interface java.beans.PropertyChangeListener
propertyChange
 

Method Detail

event

public void event(NamedEvent event)
This method is called every time a named event is fired on the component.

Parameters:
event - containing name, value and source of the NamedEvent.

componentClosed

public void componentClosed(java.util.EventObject event)
This method is called, when the component is closed.

Parameters:
event - containing the source of the event.