public class ClearSelectionAction extends AbstractSelectionAction
This action acts on the last EditableComponent
/
JTextComponent
which had the focus when the ActionEvent
was generated.
This action is called when the user selects the Clear Selection item in the Edit menu. The menu item is automatically created by the application.
If you want this behavior in your application, you have to create an action
with this ID and put it in your ApplicationModel
in method
ApplicationModel.initApplication(org.jhotdraw.app.Application)
.
Framework
The interfaces and classes listed below work together:
Contract: EditableComponent
, JTextComponent
.
Client: AbstractSelectionAction
,
DeleteAction
,
DuplicateAction
,
SelectAllAction
,
ClearSelectionAction
.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ID |
target
Constructor and Description |
---|
ClearSelectionAction()
Creates a new instance which acts on the currently focused component.
|
ClearSelectionAction(javax.swing.JComponent target)
Creates a new instance which acts on the specified component.
|
Modifier and Type | Method and Description |
---|---|
void |
actionPerformed(java.awt.event.ActionEvent evt) |
protected void |
updateEnabled() |
public static final java.lang.String ID
public ClearSelectionAction()
public ClearSelectionAction(javax.swing.JComponent target)
target
- The target of the action. Specify null for the currently
focused component.public void actionPerformed(java.awt.event.ActionEvent evt)
protected void updateEnabled()
updateEnabled
in class AbstractSelectionAction