public class SelectAllAction 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 Select All 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 | 
|---|
| SelectAllAction()Creates a new instance which acts on the currently focused component. | 
| SelectAllAction(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 SelectAllAction()
public SelectAllAction(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