edu.neu.ccs.gui
Class PropertyChangeAction
java.lang.Object
javax.swing.AbstractAction
edu.neu.ccs.gui.PropertyChangeAction
- All Implemented Interfaces:
- Action, ActionListener, Cloneable, EventListener, Serializable
- public abstract class PropertyChangeAction
- extends AbstractAction
Encapsulates an action that is performed
as a result of a PropertyChangeEvent.
- Since:
- 1.0.1
- Version:
- 2.2
- See Also:
- Serialized Form
PropertyChangeAction
public PropertyChangeAction()
- Constructs a property change action with no name or icon.
PropertyChangeAction
public PropertyChangeAction(String name)
- Constructs a property change action
with the given name but no icon.
- Parameters:
name - the name for this action
PropertyChangeAction
public PropertyChangeAction(String name,
Icon icon)
- Constructs a property change action
with the given name and icon.
- Parameters:
name - the name for this actionicon - the icon for this action
actionPerformed
public final void actionPerformed(ActionEvent evt)
- Performs this action by calling the
propertyChangeActionPerformed method of this class
intended to perform tasks requiring information
contained in the PropertyChangeEvent
triggering this action.
If the given event is not a
PropertyChangeActionEvent,
this action is not performed.
- Parameters:
evt - an object encapsulating an event
that triggered this action
propertyChangeActionPerformed
public abstract void propertyChangeActionPerformed(PropertyChangeEvent pevt)
- Performs the tasks encapsulated by this action.
Subclasses should override this method to provide
tasks this action performs.
- Parameters:
pevt - the property change event
that triggered this action