Package ipsk.audio.actions
Class BasicAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- ipsk.audio.actions.BasicAction
-
- All Implemented Interfaces:
java.awt.event.ActionListener,java.io.Serializable,java.lang.Cloneable,java.util.EventListener,javax.swing.Action
- Direct Known Subclasses:
LoopAction,PauseAction,SetFramePositionAction,StartPlaybackAction,StartRecordAction,StopAction
public class BasicAction extends javax.swing.AbstractActionBase class for an action.- Author:
- K.Jaensch, klausj@phonetik.uni-muenchen.de
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringHIGH_LIGHTED_KEY
-
Constructor Summary
Constructors Constructor Description BasicAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidactionPerformed(java.awt.event.ActionEvent e)voidaddActionListener(java.awt.event.ActionListener al)protected voidfireActionEvent(java.awt.event.ActionEvent ae)booleanisHighlighted()voidremoveActionListener(java.awt.event.ActionListener al)voidsetHighlighted(boolean highlighted)
-
-
-
Field Detail
-
HIGH_LIGHTED_KEY
public final java.lang.String HIGH_LIGHTED_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
actionPerformed
public void actionPerformed(java.awt.event.ActionEvent e)
-
addActionListener
public void addActionListener(java.awt.event.ActionListener al)
-
removeActionListener
public void removeActionListener(java.awt.event.ActionListener al)
-
fireActionEvent
protected void fireActionEvent(java.awt.event.ActionEvent ae)
-
isHighlighted
public boolean isHighlighted()
- Returns:
- Returns the highlighted.
-
setHighlighted
public void setHighlighted(boolean highlighted)
- Parameters:
highlighted- The highlighted to set.
-
-