public class CutAction 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 Cut 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)
.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ID |
target
Constructor and Description |
---|
CutAction()
Creates a new instance which acts on the currently focused component.
|
CutAction(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) |
updateEnabled
public static final java.lang.String ID
public CutAction()
public CutAction(javax.swing.JComponent target)
target
- The target of the action. Specify null for the currently
focused component.