Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
org.blueberry.ui.keywords
Keywords

Keywords

Identifier:
org.blueberry.ui.keywords

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.blueberry.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.blueberry.ui.propertyPages and org.blueberry.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 http://www.eclipse.org/legal/epl-v10.html