public class Command
extends javax.swing.AbstractAction
Command
object receives action event, that object's
doit
method is invoked. doit
method by default
does nothing and the class customer have to override it to implement
any action handling logic.
Originally contributed by:
Juergen Verwohlt: Juergen.Verwohlt@jcatalog.com,
Rainer Steinkuhle: Rainer.Steinkuhle@jcatalog.com,
Stanislav Gorkhover: Stanislav.Gorkhover@jcatalog.comConstructor and Description |
---|
Command(java.lang.String name,
int mnemonic)
Creates
Command object with a given name and
sets the name as a tooltip text. |
Command(java.lang.String name,
java.lang.String iconName)
Creates
Command object with a given name, the same
tooltip text and icon image if appropriate image file is found. |
Modifier and Type | Method and Description |
---|---|
void |
actionPerformed(java.awt.event.ActionEvent e) |
void |
doit()
Action handler, have to be overrided by subclasses.
|
public Command(java.lang.String name, int mnemonic)
Command
object with a given name and
sets the name as a tooltip text. No associated icon image.name
- of the commandmnemonic
- A Keypublic Command(java.lang.String name, java.lang.String iconName)
Command
object with a given name, the same
tooltip text and icon image if appropriate image file is found.name
- name of the commandiconName
- name of the iconCopyright 1999-2012 The Apache Software Foundation. All Rights Reserved.