Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3ced2dc3ad31b2246bb2bd706fe6876f382f6f93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.5 [en] (Win98; I) [Netscape]">
   <title>Help System extension points: Support</title>
</head>
<body link="#0000FF" vlink="#800080">

<center>
<h1>
Support</h1></center>
<b><i>Identifier: </i></b>org.eclipse.help.support
<p><b><i>Description:</i></b> For configuring a help system UI. The platform
should be configured with no more than one help system UI.
<p><b><i>Configuration Markup:</i></b>
<p><tt>&nbsp;&nbsp; &lt;!ELEMENT config EMPTY></tt>
<br><tt>&nbsp;&nbsp; &lt;!ATTLIST config class CDATA #REQUIRED</tt> <tt>></tt>
<ul>
<li>
<b>class</b> - the implementation class for displaying online and context-sensitive
help. This class must implement the <tt>org.eclipse.help.IHelp</tt>
interface.</li>
</ul>
<b><i>Examples:</i></b>
<p>The following is a sample usage of the <tt>support</tt> extension point:
<p>(in file <tt>plugin.xml</tt>)
<p><tt>&nbsp;&nbsp; &lt;extension point="org.eclipse.help.support"></tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;config class="com.example.XYZHelpUI"/></tt>
<br><tt>&nbsp;&nbsp; &lt;/extension></tt>
<p><b><i>API Information</i>: </b>The supplied class must implement the
<tt>org.eclipse.help.IHelp</tt>
interface. Methods in that interface determine what happens when a user
asks for online help or context-sensitive help. The implementation should
access the help information contributed via the <tt>org.eclipse.help.contributions</tt>
and <tt>org.eclipse.help.contexts</tt> extension points.
<p><i><b>Supplied Implementation:</b> </i>The <tt>org.eclipse.help.workbench</tt>
plug-in contains an implementation of the help system UI. Although this
plug-in is supplied with the Eclipse platform, it is entirely optional
and can be safely omitted from the platform configuration.
<p><a href="hglegal.htm"><img SRC="ngibmcpy.gif" ALT="Copyright IBM Corporation 2000" BORDER=0 height=12 width=195></a>
</body>
</html>

Back to the top