This repository was archived by the owner on Jan 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdev.html
More file actions
124 lines (114 loc) · 3.91 KB
/
dev.html
File metadata and controls
124 lines (114 loc) · 3.91 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!--
* Copyright © 2003 Sun Microsystems, Inc
* All rights reserved.
* Notice of copyright on this source code
* product does not indicate publication.
*
* RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by
* the U.S. Government is subject to restrictions as set forth
* in subparagraph (c)(1)(ii) of the Rights in Technical Data
* and Computer Software Clause at DFARS 252.227-7013 (Oct. 1988)
* and FAR 52.227-19 (c) (June 1987).
* Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A.
*
-->
<html>
<head>
<title>Programming with the JavaHelp System</title>
<link rel="stylesheet" type="text/css" href="../jhug.css" title="Style">
</head>
<body bgcolor="#ffffff">
<h1>Programming with the JavaHelp System</h1>
<p>
The topics in this chapter of the <i>JavaHelp System User's Guide</i>
describe the aspects of the JavaHelp system of primary interest
to application developers.
</p>
<p>The JavaHelp system classes are distributed in the following JAR files. The
following redistributable JAR files are located in the <code>javahelp\lib</code>
folder: </p>
<table width=98% border=0 cellpadding=10>
<tr valign="top">
<td width=30%> <code>jh.jar</code> <br>
<img src="../images/tablespacer80.gif" width="80" height="10">
</td>
<td width=70%> The standard library that includes everything needed to use
the help viewer and the standard navigator types (TOC, index, full-text
search). </td>
</tr>
<tr valign="top">
<td width=30%> <code>jhbasic.jar</code> <br>
</td>
<td width=70%> A subset of <code>jh.jar</code> that does not include support for
the full-text search engine. This subset might be useful for simple help
systems that do not require a full-text search database or for help systems
whose size is important. </td>
</tr>
<tr valign="top">
<td width=30%> <code>jhall.jar </code><br>
</td>
<td width=70%> Includes all the JavaHelp system classes, including the tools
required to create a search database. </td>
</tr>
<tr valign="top">
<td width=30%> <code>jsearch.jar</code> <br>
</td>
<td width=70%>
The default full-text search
engine used in the JavaHelp system.
</td>
</tr>
</table>
<p>
<h2>Supplemental Information</h2>
<p>
You will probably find the following supplemental
documentation and source code useful:
<br>
<table width=98% border=0 cellpadding=5>
<tr valign="top">
<td width=30%>
API
<br>
<img src="../images/tablespacer130.gif" width="130" height="10">
</td>
<td width=70%> The <code>javadoc</code> generated documentation of the JavaHelp
software API is included with this release. You can view the API by using
the JavaHelp software API viewer (<code>demos\bin\apiviewer</code>) or by
using a web browser (<code>doc\api\index.html</code>).</td>
</tr>
<tr valign="top">
<td width=30%>
Specification
</td>
<td width=70%> The specification for version 2.0 of the JavaHelp system is
included in this release and can be found at:
<pre>doc\spec\JavaHelp_V2_0_Specification.pdf</pre>
</td>
</tr>
<tr valign="top">
<td width=30%>
Sample Source Files
</td>
<td width=70%>
This release includes <a href="../release/demos.html">demo
programs</a> that demonstrate JavaHelp system
functionality. Sources for the demo programs are included
in the release at:
<pre>demos\src</pre>
</td>
</tr>
</table>
<p>
<img src="../../images/hg_see.gif" width="18" height="13"><b>See also:</b>
<dl>
<dd><a href="basics.html">Adding the JavaHelp System to Applications</a>
<dd><a href="csh.html">Implementing Context-Sensitive Help</a>
<dd><a href="embed.html">Embedding JavaHelp Components</a>
<dd><a href="lwcomp.html">Creating Lightweight Java Components</a>
</dl>
<br>
</body>
</html>