org.apache.taglibs.rdc.scxml
Interface Observable

All Known Implementing Classes:
SCXML, Transition, TransitionTarget

public interface Observable

Interface that allows an entity within an SCXML document to have listeners attached to itself so they may be informed of events within this entity's realm.

Author:
Jaroslav Gergic, Rahul Akolkar

Method Summary
 void addListener(SCXMLListener lst)
          Add this SCXMLListener to the list of listeners associated with this SCXML model entity
 void removeListener(SCXMLListener lst)
          Remove this SCXMLListener from the list of listeners associated with this SCXML model entity.
 

Method Detail

addListener

public void addListener(SCXMLListener lst)
Add this SCXMLListener to the list of listeners associated with this SCXML model entity

Parameters:
lst - The listener to be added

removeListener

public void removeListener(SCXMLListener lst)
Remove this SCXMLListener from the list of listeners associated with this SCXML model entity.

Parameters:
lst - The listener to be removed


Copyright ? 2000-2004 The Apache Software Foundation. All Rights Reserved.