Keywords

org.eclipse.ui.keywords

3.1

The keywords extension point defines keywords and a unique id for reference by other schemas. See propertyPages and preferencePages.

<!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>


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>

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

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.