kiwi.event
Interface LinearAssociationListener


public abstract interface LinearAssociationListener

This class defines the messages that can be sent by an object that takes part in some type of linear association (e.g., a list).

Version:
1.0 (05/98)
Author:
Mark Lindner, PING Software Group

Method Summary
 void itemAdded(LinearAssociationEvent evt)
          Invoked after an item is inserted into the list.
 void itemChanged(LinearAssociationEvent evt)
          Invoked after an item in the list changes in some way.
 void itemRemoved(LinearAssociationEvent evt)
          Invoked after an item is removed from the list.
 

Method Detail

itemAdded

public void itemAdded(LinearAssociationEvent evt)
Invoked after an item is inserted into the list.

itemRemoved

public void itemRemoved(LinearAssociationEvent evt)
Invoked after an item is removed from the list.

itemChanged

public void itemChanged(LinearAssociationEvent evt)
Invoked after an item in the list changes in some way.