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 and preferencePages.
Configuration Markup:
<!ELEMENT extension (
keyword*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
-
point - a fully qualified identifier of the target extension point
-
id - an optional identifier of the extension instance
-
name - an optional name of the extension instance
<!ELEMENT keyword EMPTY>
<!ATTLIST keyword
id CDATA #REQUIRED
label CDATA #REQUIRED
>
-
id - The id is the unique id used to reference the keyword.
-
label - The human readable label of the keyword
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>
Supplied Implementation:
Keywords are used only with preference and property pages. See the
keywordReference element of the org.eclipse.ui.propertyPages and org.eclipse.ui.preferencePages extension points.
Copyright (c) 2005,2006 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html