org.apache.pivot.wtk
Interface ActionClassListener

All Known Implementing Classes:
ActionClassListener.Adapter

public interface ActionClassListener

Action class listener interface.


Nested Class Summary
static class ActionClassListener.Adapter
          Action class listener adapter.
 
Method Summary
 void actionAdded(String id)
          Called when an action has been added to the named action dictionary.
 void actionRemoved(String id, Action action)
          Called when an action has been removed from the named action dictionary.
 void actionUpdated(String id, Action previousAction)
          Called when an action has been updated in the named action dictionary.
 

Method Detail

actionAdded

void actionAdded(String id)
Called when an action has been added to the named action dictionary.

Parameters:
id -

actionUpdated

void actionUpdated(String id,
                   Action previousAction)
Called when an action has been updated in the named action dictionary.

Parameters:
id -
previousAction -

actionRemoved

void actionRemoved(String id,
                   Action action)
Called when an action has been removed from the named action dictionary.

Parameters:
id -
action -