com.karneim.util.collection.set
Interface IStatePro.IChangeListener

Enclosing interface:
IStatePro

public static interface IStatePro.IChangeListener

The listener interface for receiving change events of an IStatePro. The class that is interested in processing a state's change event implements this interface. A listener instance of that class is registered with the state using the state's addChangeListener method.

Copyright: Copyright (c) 2002

Company: B?ro f?r Softwarearchitektur www.karneim.com

Version:
1.0
Author:
Ralf Meyer

Method Summary
 void isFinalChanged(IStatePro state, boolean isFinal)
          The state invokes this method on all registered listener if it's final property is changed.
 void transitionAdded(IStatePro.ITransition transition)
          The state invokes this method on all registered listener if a transition is added to the state
 void transitionRemoved(IStatePro.ITransition transition)
          The state invokes this method on all registered listener if a transition is removed from the state
 

Method Detail

transitionAdded

void transitionAdded(IStatePro.ITransition transition)
The state invokes this method on all registered listener if a transition is added to the state


transitionRemoved

void transitionRemoved(IStatePro.ITransition transition)
The state invokes this method on all registered listener if a transition is removed from the state


isFinalChanged

void isFinalChanged(IStatePro state,
                    boolean isFinal)
The state invokes this method on all registered listener if it's final property is changed.