HelpSupport

org.eclipse.ui.helpSupport

3.0 (originally named org.eclipse.help.support)

This extension point is for contributing the help system UI. The platform should be configured with no more than one help system UI.

<!ELEMENT extension (config?)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT config EMPTY>

<!ATTLIST config

class CDATA #REQUIRED>


The following is a sample usage of the help support extension point:

 

<extension point=

"org.eclipse.ui.helpSupport"

>

<config class=

"com.example.XYZHelpUI"

/>

</extension>

The supplied class must implement a subclass of org.eclipse.ui.help.AbstractHelpUI. Implementation of the abstract methods in that class determine what happens when a user asks for online help or context-sensitive help. The implementation should access contributed help information using org.eclipse.help.HelpSystem.

The org.eclipse.help.ui plug-in contains an implementation of the help system UI.