Class BooleanPropertyAction

All Implemented Interfaces:
IAction

public class BooleanPropertyAction extends Action
The BooleanPropertyAction is an action that set the values of a boolean property in the preference store.
  • Constructor Details

    • BooleanPropertyAction

      public BooleanPropertyAction(String title, IPreferenceStore preferenceStore, String property) throws IllegalArgumentException
      Create a new instance of the receiver.
      Parameters:
      title - The displayable name of the action.
      preferenceStore - The preference store to propogate changes to
      property - The property that is being updated
      Throws:
      IllegalArgumentException - Thrown if preferenceStore or property are null.
  • Method Details

    • run

      public void run()
      Description copied from class: Action
      The default implementation of this IAction method does nothing. Subclasses should override this method if they do not need information from the triggering event, or override runWithEvent(Event) if they do.
      Specified by:
      run in interface IAction
      Overrides:
      run in class Action
      See Also: