Uses of Interface
org.puremvc.java.interfaces.ICommand

Packages that use ICommand
org.puremvc.java.core   
org.puremvc.java.interfaces   
org.puremvc.java.patterns.command   
org.puremvc.java.patterns.facade   
 

Uses of ICommand in org.puremvc.java.core
 

Fields in org.puremvc.java.core with type parameters of type ICommand
protected  java.util.Map<java.lang.String,ICommand> Controller.commandMap
          Mapping of Notification names to Command Class references
 

Methods in org.puremvc.java.core with parameters of type ICommand
 void Controller.registerCommand(java.lang.String notificationName, ICommand command)
          Register a particular ICommand class as the handler for a particular INotification.
 

Uses of ICommand in org.puremvc.java.interfaces
 

Methods in org.puremvc.java.interfaces with parameters of type ICommand
 void IFacade.registerCommand(java.lang.String noteName, ICommand commandClassRef)
          Register an ICommand with the Controller.
 void IController.registerCommand(java.lang.String notificationName, ICommand command)
          Register a particular ICommand class as the handler for a particular INotification.
 

Uses of ICommand in org.puremvc.java.patterns.command
 

Classes in org.puremvc.java.patterns.command that implement ICommand
 class MacroCommand
          A base ICommand implementation that executes other ICommands.
 class SimpleCommand
          A base ICommand implementation.
 

Methods in org.puremvc.java.patterns.command with parameters of type ICommand
protected  void MacroCommand.addSubCommand(ICommand commandClassRef)
          Add a SubCommand.
 

Uses of ICommand in org.puremvc.java.patterns.facade
 

Methods in org.puremvc.java.patterns.facade with parameters of type ICommand
 void Facade.registerCommand(java.lang.String noteName, ICommand command)
          Register an ICommand with the Controller by Notification name.