Package org.puremvc.java.interfaces
Interface ICommand
- All Superinterfaces:
INotifier
- All Known Implementing Classes:
MacroCommand,SimpleCommand
public interface ICommand extends INotifier
The interface definition for a PureMVC Command.
- See Also:
INotification
-
Method Summary
Modifier and Type Method Description voidexecute(INotification notification)Execute theICommand's logic to handle a givenINotification.Methods inherited from interface org.puremvc.java.interfaces.INotifier
sendNotification, sendNotification, sendNotification
-
Method Details
-
execute
Execute the
ICommand's logic to handle a givenINotification.- Parameters:
notification- anINotificationto handle.
-