org.pietschy.command
Interface CommandManagerListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
AbstractRecentFileGroup, CommandGroup, CommandManager, EnableCommandGroup, PageSelectorGroup, RecentFileGroup, ToggleCommandGroup, VisibleCommandGroup

public interface CommandManagerListener
extends java.util.EventListener

A listener interface for monitoring a CommandManager. This method defines the single method commandRegistered(org.pietschy.command.CommandManagerEvent).


Method Summary
 void commandRegistered(CommandManagerEvent event)
          Invoked when a new command is registered with the container.
 

Method Detail

commandRegistered

void commandRegistered(CommandManagerEvent event)
Invoked when a new command is registered with the container. This method will be invoked for all commands added to the container or any parent container.

Parameters:
event - the event detailing the registered command.