WARNING: This extension point is DEPRECATED.
Do not use this extension point, it will be removed in future versions of this product.
Instead, use the extension point org.eclipse.ui.commands
An accelerator set declares what scope it is applicable for by listing the scope's id as the value of its "scopeId" attribute (see the Accelerator Sets extension point). Many accelerator sets can be applicable for the same accelerator scope.
<!ELEMENT extension (acceleratorScope*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT acceleratorScope EMPTY>
<!ATTLIST acceleratorScope
id CDATA #REQUIRED
name CDATA #REQUIRED
description CDATA #REQUIRED
parentScope CDATA #IMPLIED>
<extension point="org.eclipse.ui.acceleratorScopes"> <acceleratorScope id="org.eclipse.ui.globalScope" name="Global" description="Action accelerator key applicable to all views and editors unless explicitly overridden."> </acceleratorScope> <acceleratorScope id="org.eclipse.ui.javaEditorScope" name="Java Editor" description="Action accelerator key applicable only when java editor active." parentScope="org.eclipse.ui.globalScope"> </acceleratorScope> </extension>
Copyright (c) 2002, 2007 IBM Corporation and others.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0 which accompanies
this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/
SPDX-License-Identifier: EPL-2.0