Uses of Class
org.eclipse.core.commands.common.NotDefinedException

Packages that use NotDefinedException
org.eclipse.core.commands Application programming interfaces for commands and handlers. 
org.eclipse.core.commands.common Application programming interfaces for common base classes. 
org.eclipse.core.commands.contexts Application programming interfaces for contexts. 
 

Uses of NotDefinedException in org.eclipse.core.commands
 

Methods in org.eclipse.core.commands with parameters of type NotDefinedException
 void IExecutionListenerWithChecks.notDefined(java.lang.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 NotDefinedException
 ParameterizedCommand CommandManager.deserialize(java.lang.String serializedParameterizedCommand)
           Returns a ParameterizedCommand with a command and parameterizations as specified in the provided serializedParameterizedCommand string.
 java.lang.Object Command.executeWithChecks(ExecutionEvent event)
          Executes this command by delegating to the current handler, if any.
 java.lang.Object ParameterizedCommand.executeWithChecks(java.lang.Object trigger, java.lang.Object applicationContext)
          Executes this command with its parameters.
static java.util.Collection ParameterizedCommand.generateCombinations(Command command)
           Generates all the possible combinations of command parameterizations for the given command.
 Category Command.getCategory()
          Returns the category for this command.
 java.lang.String CommandManager.getHelpContextId(Command command)
          Gets the help context identifier for a particular command.
 java.lang.String ParameterizedCommand.getName()
          Returns a human-readable representation of this command with all of its parameterizations.
 IParameter Command.getParameter(java.lang.String parameterId)
          Returns the parameter with the provided id or null if this command does not have a parameter with the id.
 IParameter[] Command.getParameters()
          Returns the parameters for this command.
 ParameterType Command.getParameterType(java.lang.String parameterId)
          Returns the ParameterType for the parameter with the provided id or null if this command does not have a parameter type with the id.
 ParameterType Command.getReturnType()
          Returns the ParameterType for the return value of this command or null if this command does not declare a return value parameter type.
 AbstractParameterValueConverter ParameterType.getValueConverter()
          Returns the value converter associated with this parameter, if any.
 boolean ParameterType.isCompatible(java.lang.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 NotDefinedException
 java.lang.String NamedHandleObject.getDescription()
          Returns the description for this handle.
 java.lang.String 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 NotDefinedException
 java.lang.String Context.getParentId()
          Returns the identifier of the parent of this instance.