Package org.eclipse.ui.commands
Class ActionHandler
- java.lang.Object
-
- org.eclipse.core.commands.common.EventManager
-
- org.eclipse.core.commands.AbstractHandler
-
- org.eclipse.ui.commands.AbstractHandler
-
- org.eclipse.ui.commands.ActionHandler
-
@Deprecated public final class ActionHandler extends AbstractHandler
Deprecated.Please use the "org.eclipse.core.commands" plug-in instead. This API is scheduled for deletion, see Bug 431177 for detailsThis class adapts instances ofIActiontoIHandler.- Since:
- 3.0
- See Also:
ActionHandler- Restriction:
- This class is scheduled for deletion.
-
-
Constructor Summary
Constructors Constructor Description ActionHandler(IAction action)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddHandlerListener(IHandlerListener handlerListener)Deprecated.voiddispose()Deprecated.Objectexecute(Map parameterValuesByName)Deprecated.IActiongetAction()Deprecated.MapgetAttributeValuesByName()Deprecated.voidremoveHandlerListener(IHandlerListener handlerListener)Deprecated.StringtoString()Deprecated.-
Methods inherited from class org.eclipse.ui.commands.AbstractHandler
execute, fireHandlerChanged, fireHandlerChanged, hasListeners, isEnabled, isHandled
-
Methods inherited from class org.eclipse.core.commands.AbstractHandler
addHandlerListener, removeHandlerListener, setBaseEnabled, setEnabled
-
Methods inherited from class org.eclipse.core.commands.common.EventManager
addListenerObject, clearListeners, getListeners, isListenerAttached, removeListenerObject
-
-
-
-
Constructor Detail
-
ActionHandler
@Deprecated public ActionHandler(IAction action)
Deprecated.Creates a new instance of this class given an instance ofIAction.- Parameters:
action- the action. Must not benull.
-
-
Method Detail
-
addHandlerListener
@Deprecated public void addHandlerListener(IHandlerListener handlerListener)
Deprecated.Description copied from interface:IHandlerRegisters an instance ofIHandlerListenerto listen for changes to properties of this instance.- Specified by:
addHandlerListenerin interfaceIHandler- Overrides:
addHandlerListenerin classAbstractHandler- Parameters:
handlerListener- the instance to register. Must not benull. If an attempt is made to register an instance which is already registered with this instance, no operation is performed.- Since:
- 3.1
- See Also:
IHandler.addHandlerListener(org.eclipse.ui.commands.IHandlerListener)
-
dispose
@Deprecated public void dispose()
Deprecated.Removes the property change listener from the action.- Specified by:
disposein interfaceIHandler- Specified by:
disposein interfaceIHandler- Overrides:
disposein classAbstractHandler- See Also:
IHandler.dispose()
-
execute
@Deprecated public Object execute(Map parameterValuesByName) throws ExecutionException
Deprecated.Description copied from interface:IHandlerExecutes with the map of parameter values by name.- Parameters:
parameterValuesByName- the map of parameter values by name. Reserved for future use, must benull.- Returns:
- the result of the execution. Reserved for future use, must be
null. - Throws:
ExecutionException- if an exception occurred during execution.
-
getAction
@Deprecated public IAction getAction()
Deprecated.Returns the action associated with this handler- Returns:
- the action associated with this handler (not null)
- Since:
- 3.1
-
getAttributeValuesByName
@Deprecated public Map getAttributeValuesByName()
Deprecated.Description copied from class:AbstractHandlerThis simply return an empty map. The default implementation has no attributes.- Specified by:
getAttributeValuesByNamein interfaceIHandler- Overrides:
getAttributeValuesByNamein classAbstractHandler- Returns:
- the map of attribute values by name. This map may be empty, but is
guaranteed not to be
null. If this map is not empty, its collection of keys is guaranteed to only contain instances ofString. - See Also:
IHandler.getAttributeValuesByName()
-
removeHandlerListener
@Deprecated public void removeHandlerListener(IHandlerListener handlerListener)
Deprecated.Description copied from interface:IHandlerUnregisters an instance ofIPropertyListenerlistening for changes to properties of this instance.- Specified by:
removeHandlerListenerin interfaceIHandler- Overrides:
removeHandlerListenerin classAbstractHandler- Parameters:
handlerListener- the instance to unregister. Must not benull. If an attempt is made to unregister an instance which is not already registered with this instance, no operation is performed.- Since:
- 3.1
- See Also:
IHandler.removeHandlerListener(org.eclipse.ui.commands.IHandlerListener)
-
toString
@Deprecated public String toString()
Deprecated.
-
-