org.puremvc.java.interfaces
Interface ICommand

All Known Implementing Classes:
MacroCommand, SimpleCommand

public interface ICommand

The interface definition for a PureMVC Command.

See Also:
INotification

Method Summary
 void execute(INotification notification)
          Execute the ICommand's logic to handle a given INotification.
 

Method Detail

execute

void execute(INotification notification)
Execute the ICommand's logic to handle a given INotification.

Parameters:
notification - an INotification to handle.