Interface GUIAction

All Known Implementing Classes:
CompoundAction, FocusAction, FocusOrderGroup.GroupAction, InputFilteredAction, MouseTranslateAction, MoveToBackAction, MoveToFrontAction
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 GUIAction
An action that can be invoked later from a GUI object.
Author:
Matthew Tropiano
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    call(GUIEvent event)
    The method stub called when this action is invoked.
  • Method Details

    • call

      void call(GUIEvent event)
      The method stub called when this action is invoked.
      Parameters:
      event - the event that was passed into this action.