Keywords

Identifier:
org.eclipse.ui.keywords

Since:
3.1

Description:
The keywords extension point defines keywords and a unique id for reference by other schemas. See propertyPages, newWizards, importWizards, exportWizards and preferencePages.

Configuration Markup:

<!ELEMENT extension (keyword*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT keyword EMPTY>

<!ATTLIST keyword

id    CDATA #REQUIRED

label CDATA #REQUIRED>


Examples:
The following is an example of a keyword extension:


   <extension
     point="org.eclipse.ui.keywords">
    <keyword
            label="presentation tab themes"
            id="com.xyz.AppearanceKeywords"/>
   </extension>    

API Information:
There currently is no public API for retrieving or creating keywords other than this extension point.

Supplied Implementation:
Keywords are used with workbench wizards (new, import & export), preference and property pages. See the keywordReference element of the org.eclipse.ui.propertyPages and org.eclipse.ui.preferencePages extension points.


Copyright (c) 2005, 2010 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