Interface AbstractMenuActionPropertyListener

All Known Implementing Classes:
MenuAction
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 AbstractMenuActionPropertyListener
This interface defines an object associated with a specific AbstractMenuAction instance that wants to know about changes to the AbstractMenuAction's properties.
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    menuPropertyChanged(String propertyName, Object oldValue, Object newValue)
    Tell the listener that a property has changed.
  • Method Details