Package ddf.action

Interface ActionRegistry


public interface ActionRegistry
This class is used to find all Action objects that correspond to a certain input object.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> List<Action>
    list(T subject)
    Used to retrieve all actions that can be applied to a given input.
  • Method Details

    • list

      <T> List<Action> list(T subject)
      Used to retrieve all actions that can be applied to a given input.
      Parameters:
      subject - object in which an Action can be applied
      Returns:
      all Action objects that can be applied from the given input, otherwise an empty list if no actions can be applied.