Package rma.swing
Class DateChooser.ActionSupport
java.lang.Object
rma.swing.DateChooser.ActionSupport
- Enclosing class:
- DateChooser
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addActionListener
(ActionListener listener) Add anActionListener
to this object's list of listeners.void
Fire anActionEvent
with an ID ofACTION_PERFORMED
, a null command string, and an empty modifier mask.void
fireActionEvent
(int id, String command) Fire anActionEvent
with the given ID and command string, and an empty modifier mask.void
fireActionEvent
(int id, String command, int modifiers) Fire anActionEvent
with the given ID, command string, and modifier mask.void
fireActionEvent
(String command) Fire anActionEvent
with an ID ofACTION_PERFORMED
, the given command string, and an empty modifier mask.void
removeActionListener
(ActionListener listener) Remove anActionListener
from this object's list of listeners.
-
Constructor Details
-
ActionSupport
Construct a newActionSupport
object.- Parameters:
source
- The owner of this object (and the source of the events that will be generated by it).
-
-
Method Details
-
addActionListener
Add anActionListener
to this object's list of listeners.- Parameters:
listener
- The listener to add.
-
removeActionListener
Remove anActionListener
from this object's list of listeners.- Parameters:
listener
- The listener to remove.
-
fireActionEvent
public void fireActionEvent()Fire anActionEvent
with an ID ofACTION_PERFORMED
, a null command string, and an empty modifier mask. -
fireActionEvent
Fire anActionEvent
with an ID ofACTION_PERFORMED
, the given command string, and an empty modifier mask.- Parameters:
command
- The command string for the event.
-
fireActionEvent
Fire anActionEvent
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
Fire anActionEvent
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.
-