Package rma.swing

Class DateChooser.ActionSupport

java.lang.Object
rma.swing.DateChooser.ActionSupport
Enclosing class:
DateChooser

public class DateChooser.ActionSupport extends Object
  • Constructor Details

    • ActionSupport

      public ActionSupport(Object source)
      Construct a new ActionSupport object.
      Parameters:
      source - The owner of this object (and the source of the events that will be generated by it).
  • Method Details

    • addActionListener

      public void addActionListener(ActionListener listener)
      Add an ActionListener to this object's list of listeners.
      Parameters:
      listener - The listener to add.
    • removeActionListener

      public void removeActionListener(ActionListener listener)
      Remove an ActionListener from this object's list of listeners.
      Parameters:
      listener - The listener to remove.
    • fireActionEvent

      public void fireActionEvent()
      Fire an ActionEvent with an ID of ACTION_PERFORMED, a null command string, and an empty modifier mask.
    • fireActionEvent

      public void fireActionEvent(String command)
      Fire an ActionEvent with an ID of ACTION_PERFORMED, the given command string, and an empty modifier mask.
      Parameters:
      command - The command string for the event.
    • fireActionEvent

      public void fireActionEvent(int id, String command)
      Fire an ActionEvent with the given ID and command string, and an empty modifier mask.
      Parameters:
      id - The ID for the event.
      command - The command string for the event.
    • fireActionEvent

      public void fireActionEvent(int id, String command, int modifiers)
      Fire an ActionEvent with the given ID, command string, and modifier mask.
      Parameters:
      id - The ID for the event.
      command - The command string for the event.
      modifiers - The modifier mask for the event.