Package jadex.common

Interface ICommand<T>


public interface ICommand<T>
Interface for commands that represent methods with arguments but without a return value.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(T args)
    Execute the command.
  • Method Details

    • execute

      void execute(T args)
      Execute the command.
      Parameters:
      args - The argument(s) for the call.