Class ActionClassListener.Adapter

  • All Implemented Interfaces:
    ActionClassListener
    Enclosing interface:
    ActionClassListener

    @Deprecated
    public static class ActionClassListener.Adapter
    extends java.lang.Object
    implements ActionClassListener
    Deprecated.
    Since 2.1 and Java 8 the interface itself has default implementations.
    Action class listener adapter.
    • Constructor Summary

      Constructors 
      Constructor Description
      Adapter()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void actionAdded​(java.lang.String id)
      Deprecated.
      Called when an action has been added to the named action dictionary.
      void actionRemoved​(java.lang.String id, Action action)
      Deprecated.
      Called when an action has been removed from the named action dictionary.
      void actionUpdated​(java.lang.String id, Action previousAction)
      Deprecated.
      Called when an action has been updated in the named action dictionary.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • actionAdded

        public void actionAdded​(java.lang.String id)
        Deprecated.
        Description copied from interface: ActionClassListener
        Called when an action has been added to the named action dictionary.
        Specified by:
        actionAdded in interface ActionClassListener
        Parameters:
        id - The identifier for the newly added action.
      • actionUpdated

        public void actionUpdated​(java.lang.String id,
                                  Action previousAction)
        Deprecated.
        Description copied from interface: ActionClassListener
        Called when an action has been updated in the named action dictionary.
        Specified by:
        actionUpdated in interface ActionClassListener
        Parameters:
        id - The identifier for the updated action.
        previousAction - The previous Action associated with this identifier.
      • actionRemoved

        public void actionRemoved​(java.lang.String id,
                                  Action action)
        Deprecated.
        Description copied from interface: ActionClassListener
        Called when an action has been removed from the named action dictionary.
        Specified by:
        actionRemoved in interface ActionClassListener
        Parameters:
        id - Identifier for the action that was removed.
        action - The removed action.