Interface BiParameterizedCommand<T,​U>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface BiParameterizedCommand<T,​U>
    A command representing a future activity, with two parameters. Similar to BiConsumer This was deliberately created in addition to the existing GWT Command to allow better re-use of menu structures when a WorkbenchPart is embedded within Eclipse. This is the two-arity specialization of ParameterizedCommand
    • Method Detail

      • execute

        void execute​(T parameter1,
                     U parameter2)