Uses of Class
org.eclipse.core.commands.common.NotDefinedException
Packages that use NotDefinedException
Package
Description
Application programming interfaces for commands and handlers.
Application programming interfaces for common base classes.
Application programming interfaces for contexts.
Provides support for shared UI resources such as menus,
tool bars, and status lines.
Provides support for bindings between commands and various user input events
(e.g., keyboard shortcuts).
Provides support for retrieving information on Commands from the workbench.
Provides support for integrating contexts into the Eclipse workbench.
Provides support for integrating handlers into the Eclipse workbench.
-
Uses of NotDefinedException in org.eclipse.core.commands
Methods in org.eclipse.core.commands with parameters of type NotDefinedExceptionModifier and TypeMethodDescriptionvoidCommandManager.fireNotDefined(String commandId, NotDefinedException exception) Fires thenotDefinedevent forexecutionListeners.voidIExecutionListenerWithChecks.notDefined(String commandId, NotDefinedException exception) Notifies the listener that an attempt was made to execute a command that is not defined.Methods in org.eclipse.core.commands that throw NotDefinedExceptionModifier and TypeMethodDescriptionCommandManager.deserialize(String serializedParameterizedCommand) Returns aParameterizedCommandwith a command and parameterizations as specified in the providedserializedParameterizedCommandstring.Command.executeWithChecks(ExecutionEvent event) Executes this command by delegating to the current handler, if any.ParameterizedCommand.executeWithChecks(Object trigger, Object applicationContext) Executes this command with its parameters.static CollectionParameterizedCommand.generateCombinations(Command command) Generates all the possible combinations of command parameterizations for the given command.Command.getCategory()Returns the category for this command.CommandManager.getHelpContextId(Command command) Gets the help context identifier for a particular command.ParameterizedCommand.getName()Returns a human-readable representation of this command with all of its parameterizations.Returns a human-readable representation of this command with all of its parameterizations.Command.getParameter(String parameterId) Returns the parameter with the provided id ornullif this command does not have a parameter with the id.Command.getParameters()Returns the parameters for this command.Command.getParameterType(String parameterId) Returns theParameterTypefor the parameter with the provided id ornullif this command does not have a parameter type with the id.Command.getReturnType()Returns theParameterTypefor the return value of this command ornullif this command does not declare a return value parameter type.ParameterType.getValueConverter()Returns the value converter associated with this parameter, if any.booleanParameterType.isCompatible(Object value) Returns whether the provided value is compatible with this parameter type. -
Uses of NotDefinedException in org.eclipse.core.commands.common
Methods in org.eclipse.core.commands.common that throw NotDefinedExceptionModifier and TypeMethodDescriptionNamedHandleObject.getDescription()Returns the description for this handle.NamedHandleObject.getName()Returns the name for this handle. -
Uses of NotDefinedException in org.eclipse.core.commands.contexts
Methods in org.eclipse.core.commands.contexts that throw NotDefinedExceptionModifier and TypeMethodDescriptionfinal StringContext.getParentId()Returns the identifier of the parent of this instance. -
Uses of NotDefinedException in org.eclipse.jface.action
Methods in org.eclipse.jface.action with parameters of type NotDefinedExceptionModifier and TypeMethodDescriptionvoidExternalActionManager.CommandCallback.notDefined(IAction action, NotDefinedException exception) voidExternalActionManager.IExecuteCallback.notDefined(IAction action, NotDefinedException exception) Fires aNotDefinedExceptionbecause the action was not defined. -
Uses of NotDefinedException in org.eclipse.jface.bindings
Methods in org.eclipse.jface.bindings that throw NotDefinedExceptionModifier and TypeMethodDescriptionfinal StringScheme.getParentId()Returns the identifier of the parent of the scheme represented by this handle.voidBindingManager.setActiveScheme(Scheme scheme) Selects one of the schemes as the active scheme. -
Uses of NotDefinedException in org.eclipse.ui.commands
Methods in org.eclipse.ui.commands that throw NotDefinedExceptionModifier and TypeMethodDescriptionICommandService.deserialize(String serializedParameterizedCommand) Returns aParameterizedCommandwith a command and parameterizations as specified in the providedserializedParameterizedCommandstring.ICommandService.getHelpContextId(String commandId) Gets the help context identifier for a particular command.ICommandService.getHelpContextId(Command command) Gets the help context identifier for a particular command.ICommandService.registerElementForCommand(ParameterizedCommand command, UIElement element) Register that this element accepts callbacks for this parameterized command. -
Uses of NotDefinedException in org.eclipse.ui.contexts
Constructors in org.eclipse.ui.contexts with parameters of type NotDefinedExceptionModifierConstructorDescriptionDeprecated.Constructs a new instance ofNotDefinedException. -
Uses of NotDefinedException in org.eclipse.ui.handlers
Methods in org.eclipse.ui.handlers that throw NotDefinedExceptionModifier and TypeMethodDescriptionIHandlerService.executeCommand(String commandId, Event event) Executes the command with the given identifier and no parameters.IHandlerService.executeCommand(ParameterizedCommand command, Event event) Executes the given parameterized command.IHandlerService.executeCommandInContext(ParameterizedCommand command, Event event, IEvaluationContext context) Executes the given parameterized command in the provided context.