Class MacroCommand

java.lang.Object
org.puremvc.java.patterns.observer.Notifier
org.puremvc.java.patterns.command.MacroCommand
All Implemented Interfaces:
ICommand, INotifier

public class MacroCommand
extends Notifier
implements ICommand

A base ICommand implementation that executes other ICommands.

A MacroCommand maintains an list of ICommand Class references called SubCommands.

When execute is called, the MacroCommand instantiates and calls execute on each of its SubCommands turn. Each SubCommand will be passed a reference to the original INotification that was passed to the MacroCommand's execute method.

Unlike SimpleCommand, your subclass should not override execute, but instead, should override the initializeMacroCommand method, calling addSubCommand once for each SubCommand to be executed.

See Also:
Controller, Notification, SimpleCommand
  • Constructor Details

    • MacroCommand

      public MacroCommand()

      Constructor.

      You should not need to define a constructor, instead, override the initializeMacroCommand method.

      If your subclass does define a constructor, be sure to call super().

  • Method Details

    • initializeMacroCommand

      protected void initializeMacroCommand()

      Initialize the MacroCommand.

      In your subclass, override this method to initialize the MacroCommand's SubCommand list with ICommand class references like this:

       
       // Initialize MyMacroCommand
       protected void initializeMacroCommand( )
       {
            addSubCommand( () -> new com.me.myapp.controller.FirstCommand() );
            addSubCommand( () -> new com.me.myapp.controller.SecondCommand() );
            addSubCommand( () -> new com.me.myapp.controller.ThirdCommand() );
       }
       
       

      Note that SubCommands may be any ICommand implementor, MacroCommands or SimpleCommands are both acceptable.

    • addSubCommand

      protected void addSubCommand​(java.util.function.Supplier<ICommand> factory)

      Add a SubCommand.

      The SubCommands will be called in First In/First Out (FIFO) order.

      Parameters:
      factory - a reference to the factory of the ICommand.
    • execute

      public void execute​(INotification notification)

      Execute this MacroCommand's SubCommands.

      The SubCommands will be called in First In/First Out (FIFO) order.

      Specified by:
      execute in interface ICommand
      Parameters:
      notification - the INotification object to be passsed to each SubCommand.