public class TranslatedActionInfo extends Object implements ActionInfo
ACCELERATOR, ACTIVE, EXTENSION, EXTENSION_NAME, ICON_NAME, PLUGIN, PLUGIN_NAME, POSITION, REDIRECTION, REDIRECTIONS, TOOLTIP, VISIBLE
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
Modifier and Type | Method and Description |
---|---|
void |
actionPerformed(ActionEvent e) |
void |
addPropertyChangeListener(PropertyChangeListener listener) |
Object |
clone()
Creates a copy of the object.
|
void |
execute()
Execute the code asociated to the action.
|
void |
execute(Map args) |
void |
execute(Object arg)
Execute the code asociated to the action.
|
void |
execute(Object[] args)
Execute the code asociated to the action.
|
String |
getAccelerator()
returns a representation human readable of the accelerator to be used
associated to the action.
|
String |
getCommand()
Returns the command used for invoking the execute method of
the extension asociated to this action.
|
IExtension |
getExtension()
returns the extension asociated to the action.
|
String |
getExtensionName()
Returns the extension name of the extension asociated to this action.
|
ImageIcon |
getIcon()
Return an icon asociated to the action.
|
String |
getIconName()
Returns the name of icon asociated to the action.
|
KeyStroke |
getKeyStroke()
returns the KeyStroke which represents the accelerator of this
action.
|
String |
getLabel()
Return a label asociated to the action.
|
String |
getName()
Returns the name of the action.
|
PluginServices |
getPlugin()
returns the plugin of the extension asociated to the action.
|
String |
getPluginName()
Return the plugin name of the plugin asociated to the action.
|
long |
getPosition()
Return the position absolute of the action referred to all actions.
|
Collection<ActionInfo> |
getRedirections()
An action can redirect the execution of the execute, isVisible and isEnabled methods
to other action.
|
String |
getTooltip()
Return a string that represents a tip asociated whit the action,
usually used as tooltip in buttons or menus.
|
Object |
getValue(String key) |
boolean |
isActive()
Return true is the action is active.
|
boolean |
isEnabled()
retrurn if the action is enables.
|
boolean |
isVisible()
retrurn if the action can be visible in the user interface or not.
|
void |
putValue(String key,
Object value) |
void |
removePropertyChangeListener(PropertyChangeListener listener) |
void |
setActive(boolean active)
Set the active state of an ActionInfo.
|
void |
setEnabled(boolean b) |
public void setEnabled(boolean b)
setEnabled
in interface Action
public void addPropertyChangeListener(PropertyChangeListener listener)
addPropertyChangeListener
in interface Action
public void removePropertyChangeListener(PropertyChangeListener listener)
removePropertyChangeListener
in interface Action
public void actionPerformed(ActionEvent e)
actionPerformed
in interface ActionListener
public PluginServices getPlugin()
ActionInfo
getPlugin
in interface ActionInfo
public IExtension getExtension()
ActionInfo
getExtension
in interface ActionInfo
public String getPluginName()
ActionInfo
getPluginName
in interface ActionInfo
ActionInfo.getPlugin()
public String getExtensionName()
ActionInfo
getExtensionName
in interface ActionInfo
ActionInfo.getExtension()
public String getName()
ActionInfo
getName
in interface ActionInfo
public String getLabel()
ActionInfo
getLabel
in interface ActionInfo
public String getCommand()
ActionInfo
getCommand
in interface ActionInfo
public ImageIcon getIcon()
ActionInfo
getIcon
in interface ActionInfo
public String getIconName()
ActionInfo
getIconName
in interface ActionInfo
public String getAccelerator()
ActionInfo
getAccelerator
in interface ActionInfo
public KeyStroke getKeyStroke()
ActionInfo
getKeyStroke
in interface ActionInfo
ActionInfo.getAccelerator()
public String getTooltip()
ActionInfo
getTooltip
in interface ActionInfo
public long getPosition()
ActionInfo
getPosition
in interface ActionInfo
public boolean isVisible()
ActionInfo
isVisible
in interface ActionInfo
public boolean isEnabled()
ActionInfo
isEnabled
in interface Action
isEnabled
in interface ActionInfo
public void execute()
ActionInfo
execute
in interface ActionInfo
public void execute(Object[] args)
ActionInfo
execute
in interface ActionInfo
ActionInfo.execute()
public void execute(Map args)
execute
in interface ActionInfo
public void execute(Object arg)
ActionInfo
execute
in interface ActionInfo
ActionInfo.execute()
public boolean isActive()
ActionInfo
isActive
in interface ActionInfo
public void setActive(boolean active)
ActionInfo
setActive
in interface ActionInfo
public Collection<ActionInfo> getRedirections()
ActionInfo
getRedirections
in interface ActionInfo
public Object clone() throws CloneNotSupportedException
Cloneable
clone
in class Object
CloneNotSupportedException
- if the instance of the object cannot
be cloned. As this is extending Cloneable
so
its sure it implements it, so this exception may be used for problems
on specific object instances.Object#clone()}.