Class SimpleCommand

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

public class SimpleCommand
extends Notifier
implements ICommand

A base ICommand implementation.

Your subclass should override the execute method where your business logic will handle the INotification.

See Also:
Controller, Notification, MacroCommand
  • Constructor Details

  • Method Details

    • execute

      public void execute​(INotification notification)

      Fulfill the use-case initiated by the given INotification.

      In the Command Pattern, an application use-case typically begins with some user action, which results in an INotification being broadcast, which is handled by business logic in the execute method of an ICommand.

      Specified by:
      execute in interface ICommand
      Parameters:
      notification - the INotification to handle.