blob: 07a8742a323195268846c6267a3d0fda9470f1e9 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001.'" t
2." Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
3." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4."
5." This code is free software; you can redistribute it and/or modify it
6." under the terms of the GNU General Public License version 2 only, as
7." published by the Free Software Foundation.
8."
9." This code is distributed in the hope that it will be useful, but WITHOUT
10." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12." version 2 for more details (a copy is included in the LICENSE file that
13." accompanied this code).
14."
15." You should have received a copy of the GNU General Public License version
16." 2 along with this work; if not, write to the Free Software Foundation,
17." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18."
19." Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20." CA 95054 USA or visit www.sun.com if you need additional information or
21." have any questions.
22." `
23.TH javadoc 1 "07 Aug 2006"
24." Generated by html2man
25.SH NAME
26javadoc \- The Java API Documentation Generator
27.RS 3
28
29.LP
30.LP
31Generates HTML pages of API documentation from Java source files. This document contains Javadoc examples for Sun Solaris.
32.LP
33.RE
34.SH "SYNOPSIS"
35.LP
36.LP
37\f4javadoc\fP\f2\ [\ \fP\f2options\fP\f2\ ]\ [\ packagenames\ ]\ [\ sourcefilenames\ ]\ [\ \-subpackages\fP\ \f2pkg1:pkg2:...\fP\f2\ ]\ [\ \fP\f2@argfiles\fP\f2\ ]\fP
38.LP
39.LP
40Arguments can be in any order. See processing of Source Files for details on how the Javadoc tool determines which "\f2.java\fP" files to process.
41.LP
42.RS 3
43
44.LP
45.RS 3
46.TP 3
47options
48Command\-line options, as specified in this document. To see a typical use of javadoc options, see Real\-World Example.
49.TP 3
50packagenames
51A series of names of packages, separated by spaces, such as \f2java.lang\ java.lang.reflect\ java.awt\fP. You must separately specify each package you want to document. Wildcards are not allowed; use \-subpackages for recursion. The Javadoc tool uses \f2\-sourcepath\fP to look for these package names. See Example \- Documenting One or More Packages
52.TP 3
53sourcefilenames
54A series of source file names, separated by spaces, each of which can begin with a path and contain a wildcard such as asterisk (*). The Javadoc tool will process every file whose name ends with ".java", and whose name, when stripped of that suffix, is actually a legal class name (see
55.na
56\f2Identifiers\fP @
57.fi
58http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#40625). Therefore, you can name files with dashes (such as \f2X\-Buffer\fP), or other illegal characters, to prevent them from being documented. This is useful for test files and template files The path that precedes the source file name determines where javadoc will look for the file. (The Javadoc tool does \f2not\fP use \f2\-sourcepath\fP to look for these source file names.) Relative paths are relative to the current directory, so passing in \f2Button.java\fP is identical to \f2./Button.java\fP. A source file name with an absolute path and a wildcard, for example, is \f2/home/src/java/awt/Graphics*.java\fP. See Example\ \-\ Documenting One or More Classes. You can also mix packagenames and sourcefilenames, as in Example\ \-\ Documenting Both Packages and Classes
59.TP 3
60\-subpackages pkg1:pkg2:...
61Generates documentation from source files in the specified packages and recursively in their subpackages. An alternative to supplying packagenames or sourcefilenames.
62.TP 3
63@argfiles
64One or more files that contain a list of Javadoc options, packagenames and sourcefilenames in any order. Wildcards (*) and \f2\-J\fP options are not allowed in these files.
65.RE
66
67.LP
68.RE
69.SH "DESCRIPTION"
70.LP
71.LP
72The \f3Javadoc\fP tool parses the declarations and documentation comments in a set of Java source files and produces a corresponding set of HTML pages describing (by default) the public and protected classes, nested classes (but not anonymous inner classes), interfaces, constructors, methods, and fields. You can use it to generate the API (Application Programming Interface) documentation or the implementation documentation for a set of source files.
73.LP
74.LP
75You can run the Javadoc tool on entire packages, individual source files, or both. When documenting entire packages, you can either use \f2\-subpackages\fP for traversing recursively down from a top\-level directory, or pass in an explicit list of package names. When documenting individual source files, you pass in a list of source (\f2.java\fP) filenames. Examples are given at the end of this document. How Javadoc processes source files is covered next.
76.LP
77.SS
78Processing of source files
79.LP
80.LP
81The Javadoc tool processes files that end in "\f2.java\fP" plus other files described under Source Files. If you run the Javadoc tool by explicitly passing in individual source filenames, you can determine exactly which "\f2.java\fP" files are processed. However, that is not how most developers want to work, as it is simpler to pass in package names. The Javadoc tool can be run three ways without explicitly specifying the source filenames. You can (1) pass in package names, (2) use \f2\-subpackages\fP, and (3) use wildcards with source filenames (\f2*.java\fP). In these cases, the Javadoc tool processes a "\f2.java\fP" file only if it fulfills all of the following requirements:
82.LP
83.RS 3
84.TP 2
85o
86Its name, after stripping off the "\f2.java\fP" suffix, is actually a legal class name (see
87.na
88\f2Identifiers\fP @
89.fi
90http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#40625 for legal characters)
91.TP 2
92o
93Its directory path relative to the root of the source tree is actually a legal package name (after converting its separators to dots)
94.TP 2
95o
96Its package statement contains the legal package name (specified in the previous bullet)
97.RE
98
99.LP
100.LP
101\f3Processing of links\fP \- During a run, the Javadoc tool automatically adds cross\-reference links to package, class and member names that are being documented as part of that run. Links appear in several places:
102.LP
103.RS 3
104.TP 2
105o
106Declarations (return types, argument types, field types)
107.TP 2
108o
109"See Also" sections generated from \f2@see\fP tags
110.TP 2
111o
112In\-line text generated from \f2{@link}\fP tags
113.TP 2
114o
115Exception names generated from \f2@throws\fP tags
116.TP 2
117o
118"Specified by" links to members in interfaces and "Overrides" links to members in classes
119.TP 2
120o
121Summary tables listing packages, classes and members
122.TP 2
123o
124Package and class inheritance trees
125.TP 2
126o
127The index
128.RE
129
130.LP
131.LP
132You can add hyperlinks to existing text for classes not included on the command line (but generated separately) by way of the \f2\-link\fP and \f2\-linkoffline\fP options.
133.LP
134.LP
135\f3Other processing details\fP \- The Javadoc tool produces one complete document each time it is run; it cannot do incremental builds \-\- that is, it cannot modify or \f2directly\fP incorporate results from previous runs of the Javadoc tool. However, it can link to results from other runs, as just mentioned.
136.LP
137.LP
138As implemented, the Javadoc tool requires and relies on the java compiler to do its job. The Javadoc tool calls part of \f2javac\fP to compile the declarations, ignoring the member implementation. It builds a rich internal representation of the classes, including the class hierarchy, and "use" relationships, then generates the HTML from that. The Javadoc tool also picks up user\-supplied documentation from documentation comments in the source code.
139.LP
140.LP
141In fact, the Javadoc tool will run on \f2.java\fP source files that are pure stub files with no method bodies. This means you can write documentation comments and run the Javadoc tool in the earliest stages of design while creating the API, before writing the implementation.
142.LP
143.LP
144Relying on the compiler ensures that the HTML output corresponds exactly with the actual implementation, which may rely on implicit, rather than explicit, source code. For example, the Javadoc tool documents
145.na
146\f2default constructors\fP @
147.fi
148http://java.sun.com/docs/books/jls/second_edition/html/names.doc.html#36154 (section 8.6.7 of \f2Java Language Specification\fP) that are present in the \f2.class\fP files but not in the source code.
149.LP
150.LP
151In many cases, the Javadoc tool allows you to generate documentation for source files whose code is incomplete or erroneous. This is a benefit that enables you to generate documentation before all debugging and troubleshooting is done. For example, according to the \f2Java Language Specification\fP, a class that contains an abstract method should itself be declared abstract. The Javadoc tool does not check for this, and would proceed without a warning, whereas the javac compiler stops on this error. The Javadoc tool does do some primitive checking of doc comments. Use the DocCheck doclet to check the doc comments more thoroughly.
152.LP
153.LP
154When the Javadoc tool builds its internal structure for the documentation, it loads all referenced classes. Because of this, the Javadoc tool must be able to find all referenced classes, whether bootstrap classes, extensions, or user classes. For more about this, see How Classes Are Found. Generally speaking, classes you create must either be loaded as an extension or in the Javadoc tool's class path.
155.LP
156.SS
157Javadoc Doclets
158.LP
159.LP
160You can customize the content and format of the Javadoc tool's output by using doclets. The Javadoc tool has a default "built\-in" doclet, called the standard doclet, that generates HTML\-formatted API documentation. You can modify or subclass the standard doclet, or write your own doclet to generate HTML, XML, MIF, RTF or whatever output format you'd like. Information about doclets and their use is at the following locations:
161.LP
162.RS 3
163.TP 2
164o
165Javadoc Doclets
166.TP 2
167o
168The \f2\-doclet\fP command\-line option
169.RE
170
171.LP
172.LP
173When a custom doclet is not specified with the \f2\-doclet\fP command line option, the Javadoc tool will use the default standard doclet. The javadoc tool has several command line options that are available regardless of which doclet is being used. The standard doclet adds a supplementary set of command line options. Both sets of options are described below in the options section.
174.LP
175.SS
176Related Documentation and Doclets
177.LP
178.RS 3
179.TP 2
180o
181Javadoc Enhancements for details about improvements added in Javadoc.
182.TP 2
183o
184.na
185\f2Javadoc FAQ\fP @
186.fi
187http://java.sun.com/j2se/javadoc/faq/index.html for answers to common questions, information about Javadoc\-related tools, and workarounds for bugs.
188.TP 2
189o
190.na
191\f2How to Write Doc Comments for Javadoc\fP @
192.fi
193http://java.sun.com/j2se/javadoc/writingdoccomments/index.html for more information about Sun conventions for writing documentation comments.
194.TP 2
195o
196.na
197\f2Requirements for Writing API Specifications\fP @
198.fi
199http://java.sun.com/j2se/javadoc/writingapispecs/index.html \- Standard requirements used when writing the Java 2 Platform Specification. It can be useful whether you are writing API specifications in source file documentation comments or in other formats. It covers requirements for packages, classes, interfaces, fields and methods to satisfy testable assertions.
200.TP 2
201o
202.na
203\f2Documentation Comment Specification\fP @
204.fi
205http://java.sun.com/docs/books/jls/first_edition/html/18.doc.html \- The original specification on documentation comments, Chapter 18, Documentation Comments, in the \f2Java Language Specification\fP, First Edition, by James Gosling, Bill Joy, and Guy Steele. (This chapter was removed from the second edition.)
206.TP 2
207o
208.na
209\f2DocCheck Doclet\fP @
210.fi
211http://java.sun.com/javadoc/doccheck \- Checks doc comments in source files and generates a report listing the errors and irregularities it finds. It is part of the Sun Doc Check Utilities.
212.TP 2
213o
214.na
215\f2MIF Doclet\fP @
216.fi
217http://java.sun.com/javadoc/mifdoclet \- Can automate the generation of API documentation in MIF, FrameMaker and PDF formats. MIF is Adobe FrameMaker's interchange format.
218.RE
219
220.LP
221.SS
222Terminology
223.LP
224.LP
225The terms \f2documentation comment\fP, \f2doc comment\fP, \f2main description\fP, \f2tag\fP, \f2block tag\fP, and \f2in\-line tag\fP are described at Documentation Comments. These other terms have specific meanings within the context of the Javadoc tool:
226.LP
227.RS 3
228.TP 3
229generated document
230The document generated by the javadoc tool from the doc comments in Java source code. The default generated document is in HTML and is created by the standard doclet.
231.LP
232.TP 3
233name
234A name of a program element written in the Java Language \-\- that is, the name of a package, class, interface, field, constructor or method. A name can be fully\-qualified, such as \f2java.lang.String.equals(java.lang.Object)\fP, or partially\-qualified, such as \f2equals(Object)\fP.
235.LP
236.TP 3
237documented classes
238The classes and interfaces for which detailed documentation is generated during a javadoc run. To be documented, the source files must be available, their source filenames or package names must be passed into the javadoc command, and they must not be filtered out by their access modifier (public, protected, package\-private or private). We also refer to these as the classes included in the javadoc output, or the \f2included classes\fP.
239.LP
240.TP 3
241included classes
242Classes and interfaces whose details are documented during a run of the Javadoc tool. Same as \f2documented classes\fP.
243.LP
244.TP 3
245excluded classes
246Classes and interfaces whose details are \f2not\fP documented during a run of the Javadoc tool.
247.LP
248.TP 3
249referenced classes
250The classes and interfaces that are explicitly referred to in the definition (implementation) or doc comments of the documented classes and interfaces. Examples of references include return type, parameter type, cast type, extended class, implemented interface, imported classes, classes used in method bodies, @see, {@link}, {@linkplain}, and {@inheritDoc} tags. (Notice this definition has changed since
251.na
252\f21.3\fP @
253.fi
254http://java.sun.com/j2se/1.3/docs/tooldocs/solaris/javadoc.html#referencedclasses.) When the Javadoc tool is run, it should load into memory all of the referenced classes in javadoc's bootclasspath and classpath. (The Javadoc tool prints a "Class not found" warning for referenced classes not found.) The Javadoc tool can derive enough information from the .class files to determine their existence and the fully\-qualified names of their members.
255.LP
256.TP 3
257external referenced classes
258The referenced classes whose documentation is not being generated during a javadoc run. In other words, these classes are not passed into the Javadoc tool on the command line. Links in the generated documentation to those classes are said to be \f2external references\fP or \f2external links\fP. For example, if you run the Javadoc tool on only the \f2java.awt\fP package, then any class in \f2java.lang\fP, such as \f2Object\fP, is an external referenced class. External referenced classes can be linked to using the \f2\-link\fP and \f2\-linkoffline\fP options. An important property of an external referenced class is that its source comments are normally not available to the Javadoc run. In this case, these comments cannot be inherited.
259.RE
260
261.LP
262.SH "SOURCE FILES"
263.LP
264.LP
265The Javadoc tool will generate output originating from four different types of "source" files: Java language source files for classes (\f2.java\fP), package comment files, overview comment files, and miscellaneous unprocessed files. This section also covers test files and template files that can also be in the source tree, but which you want to be sure not to document.
266.LP
267.SS
268Class Source Code Files
269.LP
270.LP
271Each class or interface and its members can have their own documentation comments, contained in a \f2.java\fP file. For more details about these doc comments, see Documentation Comments.
272.LP
273.SS
274Package Comment Files
275.LP
276.LP
277Each package can have its own documentation comment, contained in its own "source" file, that the Javadoc tool will merge into the package summary page that it generates. You typically include in this comment any documentation that applies to the entire package.
278.LP
279.LP
280To create a package comment file, you have a choice of two files to place your comments:
281.LP
282.RS 3
283.TP 2
284o
285\f2package\-info.java\fP \- Can contain a package declaration, package annotations, package comments and Javadoc tags. This file is new in JDK 5.0, and is preferred over package.html.
286.TP 2
287o
288\f2package.html\fP \- Can contain only package comments and Javadoc tags, no package annotations.
289.RE
290
291.LP
292.LP
293A package may have a single \f2package.html\fP file or a single \f2package\-info.java\fP file but not both. Place either file in the package directory in the source tree along with your \f2.java\fP files.
294.LP
295.LP
296\f4package\-info.java\fP This file can contain a package comment of the following structure \-\- the comment is placed before the package declaration:
297.LP
298.LP
299File: \f2java/applet/package\-info.java\fP
300.LP
301.LP
302.TS
303.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
304.de 35
305.ps \n(.s
306.vs \n(.vu
307.in \n(.iu
308.if \n(.u .fi
309.if \n(.j .ad
310.if \n(.j=0 .na
311..
312.nf
313.nr #~ 0
314.if n .nr #~ 0.6n
315.ds #d .d
316.if \(ts\n(.z\(ts\(ts .ds #d nl
317.fc
318.nr 33 \n(.s
319.rm 80
320.nr 34 \n(.lu
321.eo
322.am 80
323.br
324.di a+
325.35
326.ft \n(.f
327.ll \n(34u*1u/2u
328.if \n(.l<\n(80 .ll \n(80u
329.in 0
330.nf
331\f3
332.fl
333/**
334.fl
335 * Provides the classes necessary to create an
336.fl
337 * applet and the classes an applet uses
338.fl
339 * to communicate with its applet context.
340.fl
341 * <p>
342.fl
343 * The applet framework involves two entities:
344.fl
345 * the applet and the applet context.
346.fl
347 * An applet is an embeddable window (see the
348.fl
349 * {@link java.awt.Panel} class) with a few extra
350.fl
351 * methods that the applet context can use to
352.fl
353 * initialize, start, and stop the applet.
354.fl
355 *
356.fl
357 * @since 1.0
358.fl
359 * @see java.awt
360.fl
361 */
362.fl
363package java.lang.applet;
364.fl
365\fP
366.fi
367.br
368.di
369.nr a| \n(dn
370.nr a- \n(dl
371..
372.ec \
373.35
374.nf
375.ll \n(34u
376.nr 80 0
377.80
378.rm 80
379.nr 38 \n(a-
380.if \n(80<\n(38 .nr 80 \n(38
381.35
382.nf
383.ll \n(34u
384.nr 38 1n
385.nr 79 0
386.nr 40 \n(79+(0*\n(38)
387.nr 80 +\n(40
388.nr TW \n(80
389.if t .if \n(TW>\n(.li .tm Table at line 326 file Input is too wide - \n(TW units
390.fc  
391.nr #T 0-1
392.nr #a 0-1
393.eo
394.de T#
395.ds #d .d
396.if \(ts\n(.z\(ts\(ts .ds #d nl
397.mk ##
398.nr ## -1v
399.ls 1
400.ls
401..
402.ec
403.ne \n(a|u+\n(.Vu
404.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
405.ta \n(80u
406.nr 31 \n(.f
407.nr 35 1m
408\&\h'|\n(40u'
409.mk ##
410.nr 31 \n(##
411.sp |\n(##u-1v
412.nr 37 \n(40u
413.in +\n(37u
414.a+
415.in -\n(37u
416.mk 32
417.if \n(32>\n(31 .nr 31 \n(32
418.sp |\n(31u
419.fc
420.nr T. 1
421.T# 1
422.35
423.rm a+
424.TE
425.if \n-(b.=0 .nr c. \n(.c-\n(d.-42
426
427.LP
428.LP
429Note that while the comment separators \f2/**\fP and \f2/*\fP must be present, the leading asterisks on the intermediate lines can be omitted.
430.LP
431.LP
432\f4package.html\fP \- This file can contain a package comment of the following structure \-\- the comment is placed in the \f2<body>\fP element:
433.LP
434.LP
435File: \f2java/applet/package.html\fP
436.LP
437.LP
438.TS
439.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
440.de 35
441.ps \n(.s
442.vs \n(.vu
443.in \n(.iu
444.if \n(.u .fi
445.if \n(.j .ad
446.if \n(.j=0 .na
447..
448.nf
449.nr #~ 0
450.if n .nr #~ 0.6n
451.ds #d .d
452.if \(ts\n(.z\(ts\(ts .ds #d nl
453.fc
454.nr 33 \n(.s
455.rm 80
456.nr 34 \n(.lu
457.eo
458.am 80
459.br
460.di a+
461.35
462.ft \n(.f
463.ll \n(34u*1u/2u
464.if \n(.l<\n(80 .ll \n(80u
465.in 0
466.nf
467\f3
468.fl
469<HTML>
470.fl
471<BODY>
472.fl
473Provides the classes necessary to create an applet and the
474.fl
475classes an applet uses to communicate with its applet context.
476.fl
477<p>
478.fl
479The applet framework involves two entities: the applet
480.fl
481and the applet context. An applet is an embeddable
482.fl
483window (see the {@link java.awt.Panel} class) with a
484.fl
485few extra methods that the applet context can use to
486.fl
487initialize, start, and stop the applet.
488.fl
489
490.fl
491@since 1.0
492.fl
493@see java.awt
494.fl
495</BODY>
496.fl
497</HTML>
498.fl
499\fP
500.fi
501.br
502.di
503.nr a| \n(dn
504.nr a- \n(dl
505..
506.ec \
507.35
508.nf
509.ll \n(34u
510.nr 80 0
511.80
512.rm 80
513.nr 38 \n(a-
514.if \n(80<\n(38 .nr 80 \n(38
515.35
516.nf
517.ll \n(34u
518.nr 38 1n
519.nr 79 0
520.nr 40 \n(79+(0*\n(38)
521.nr 80 +\n(40
522.nr TW \n(80
523.if t .if \n(TW>\n(.li .tm Table at line 379 file Input is too wide - \n(TW units
524.fc  
525.nr #T 0-1
526.nr #a 0-1
527.eo
528.de T#
529.ds #d .d
530.if \(ts\n(.z\(ts\(ts .ds #d nl
531.mk ##
532.nr ## -1v
533.ls 1
534.ls
535..
536.ec
537.ne \n(a|u+\n(.Vu
538.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
539.ta \n(80u
540.nr 31 \n(.f
541.nr 35 1m
542\&\h'|\n(40u'
543.mk ##
544.nr 31 \n(##
545.sp |\n(##u-1v
546.nr 37 \n(40u
547.in +\n(37u
548.a+
549.in -\n(37u
550.mk 32
551.if \n(32>\n(31 .nr 31 \n(32
552.sp |\n(31u
553.fc
554.nr T. 1
555.T# 1
556.35
557.rm a+
558.TE
559.if \n-(b.=0 .nr c. \n(.c-\n(d.-40
560
561.LP
562.LP
563Notice this is just a normal HTML file and does not include a package declaration. The content of the package comment file is written in HTML, like all other comments, with one exception: The documentation comment should not include the comment separators \f2/**\fP and \f2*/\fP or leading asterisks. When writing the comment, you should make the first sentence a summary about the package, and not put a title or any other text between \f2<body>\fP and the first sentence. You can include package tags; as with any documentation comment, all block tags must appear after the main description. If you add a \f2@see\fP tag in a package comment file, it must have a fully\-qualified name. For more details, see the
564.na
565\f2example of \fP\f2package.html\fP @
566.fi
567http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#packagecomments.
568.LP
569.LP
570\f3Processing of package comment file\fP \- When the Javadoc tool runs, it will automatically look for the package comment file; if found, the Javadoc tool does the following:
571.LP
572.RS 3
573.TP 2
574o
575Copies the comment for processing. (For \f2package.html\fP, copies all content between \f2<body>\fP and \f2</body>\fP HTML tags. You can include a \f2<head>\fP section to put a \f2<title>\fP, source file copyright statement, or other information, but none of these will appear in the generated documentation.)
576.TP 2
577o
578Processes any package tags that are present.
579.TP 2
580o
581Inserts the processed text at the bottom of the package summary page it generates, as shown in Package Summary.
582.TP 2
583o
584Copies the first sentence of the package comment to the top of the package summary page. It also adds the package name and this first sentence to the list of packages on the overview page, as shown in Overview Summary. The end\-of\-sentence is determined by the same rules used for the end of the first sentence of class and member main descriptions.
585.RE
586
587.LP
588.SS
589Overview Comment File
590.LP
591.LP
592Each application or set of packages that you are documenting can have its own overview documentation comment, kept in its own "source" file, that the Javadoc tool will merge into the overview page that it generates. You typically include in this comment any documentation that applies to the entire application or set of packages.
593.LP
594.LP
595To create an overview comment file, you can name the file anything you want, typically \f4overview.html\fP and place it anywhere, typically at the top level of the source tree. For example, if the source files for the \f2java.applet\fP package are contained in \f2/home/user/src/java/applet\fP directory, you could create an overview comment file at \f2/home/user/src/overview.html\fP.
596.LP
597.LP
598Notice you can have multiple overview comment files for the same set of source files, in case you want to run javadoc multiple times on different sets of packages. For example, you could run javadoc once with \-private for internal documentation and again without that option for public documentation. In this case, you could describe the documentation as public or internal in the first sentence of each overview comment file.
599.LP
600.LP
601The content of the overview comment file is one big documentation comment, written in HTML, like the package comment file described previously. See that description for details. To re\-iterate, when writing the comment, you should make the first sentence a summary about the application or set of packages, and not put a title or any other text between \f2<body>\fP and the first sentence. You can include overview tags; as with any documentation comment, all tags except in\-line tags, such as \f2{@link}\fP, must appear after the main description. If you add a \f2@see\fP tag, it must have a fully\-qualified name.
602.LP
603.LP
604When you run the Javadoc tool, you specify the overview comment file name with the \-overview option. The file is then processed similar to that of a package comment file.
605.LP
606.RS 3
607.TP 2
608o
609Copies all content between \f2<body>\fP and \f2</body>\fP tags for processing.
610.TP 2
611o
612Processes any overview tags that are present.
613.TP 2
614o
615Inserts the processed text at the bottom of the overview page it generates, as shown in Overview Summary.
616.TP 2
617o
618Copies the first sentence of the overview comment to the top of the overview summary page.
619.RE
620
621.LP
622.SS
623Miscellaneous Unprocessed Files
624.LP
625.LP
626You can also include in your source any miscellaneous files that you want the Javadoc tool to copy to the destination directory. These typically includes graphic files, example Java source (.java) and class (.class) files, and self\-standing HTML files whose content would overwhelm the documentation comment of a normal Java source file.
627.LP
628.LP
629To include unprocessed files, put them in a directory called \f4doc\-files\fP which can be a subdirectory of any package directory that contains source files. You can have one such subdirectory for each package. You might include images, example code, source files, .class files, applets and HTML files. For example, if you want to include the image of a button \f2button.gif\fP in the \f2java.awt.Button\fP class documentation, you place that file in the \f2/home/user/src/java/awt/doc\-files/\fP directory. Notice the \f2doc\-files\fP directory should not be located at \f2/home/user/src/java/doc\-files\fP because \f2java\fP is not a package \-\- that is, it does not directly contain any source files.
630.LP
631.LP
632All links to these unprocessed files must be hard\-coded, because the Javadoc tool does not look at the files \-\- it simply copies the directory and all its contents to the destination. For example, the link in the \f2Button.java\fP doc comment might look like:
633.LP
634.nf
635\f3
636.fl
637 /**
638.fl
639 * This button looks like this:
640.fl
641 * <img src="doc\-files/Button.gif">
642.fl
643 */
644.fl
645\fP
646.fi
647
648.LP
649.SS
650Test Files and Template Files
651.LP
652.LP
653Some developers have indicated they want to store test files and templates files in the source tree near their corresponding source files. That is, they would like to put them in the same directory, or a subdirectory, of those source files.
654.LP
655.LP
656If you run the Javadoc tool by explicitly passing in individual source filenames, you can deliberately omit test and templates files and prevent them from being processed. However, if you are passing in package names or wildcards, you need to follow certain rules to ensure these test files and templates files are not processed.
657.LP
658.LP
659Test files differ from template files in that the former are legal, compilable source files, while the latter are not, but may end with ".java".
660.LP
661.LP
662\f3Test files\fP \- Often developers want to put compilable, runnable test files for a given package in the \f2same\fP directory as the source files for that package. But they want the test files to belong to a package other than the source file package, such as the unnamed package (so the test files have no package statement or a different package statement from the source). In this scenario, when the source is being documented by specifying its package name specified on the command line, the test files will cause warnings or errors. You need to put such test files in a subdirectory. For example, if you want to add test files for source files in \f2com.package1\fP, put them in a subdirectory that would be an invalid package name (because it contains a hyphen):
663.LP
664.nf
665\f3
666.fl
667 com/package1/test\-files/
668.fl
669\fP
670.fi
671
672.LP
673.LP
674The test directory will be skipped by the Javadoc tool with no warnings.
675.LP
676.LP
677If your test files contain doc comments, you can set up a separate run of the Javadoc tool to produce documentation of the test files by passing in their test source filenames with wildcards, such as \f2com/package1/test\-files/*.java\fP.
678.LP
679.LP
680\f3Templates for source files\fP \- Template files have names that often end in ".java" and are not compilable. If you have a template for a source file that you want to keep in the source directory, you can name it with a dash (such as \f2Buffer\-Template.java\fP), or any other illegal Java character, to prevent it from being processed. This relies on the fact that the Javadoc tool will only process source files whose name, when stripped of the ".java" suffix, is actually a legal class name (see
681.na
682\f2Identifiers\fP @
683.fi
684http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#40625).
685.LP
686.SH "GENERATED FILES"
687.LP
688.LP
689By default, javadoc uses a standard doclet that generates HTML\-formatted documentation. This doclet generates the following kinds of files (where each HTML "page" corresponds to a separate file). Note that javadoc generates files with two types of names: those named after classes/interfaces, and those that are not (such as \f2package\-summary.html\fP). Files in the latter group contain hyphens to prevent filename conflicts with those in the former group.
690.LP
691.LP
692\f3Basic Content Pages\fP
693.LP
694.RS 3
695.TP 2
696o
697One \f3class or interface page\fP (\f2classname\fP\f2.html\fP) for each class or interface it is documenting.
698.TP 2
699o
700One \f3package page\fP (\f2package\-summary.html\fP) for each package it is documenting. The Javadoc tool will include any HTML text provided in a file named \f2package.html\fP or \f2package\-info.java\fP in the package directory of the source tree.
701.TP 2
702o
703One \f3overview page\fP (\f2overview\-summary.html\fP) for the entire set of packages. This is the front page of the generated document. The Javadoc tool will include any HTML text provided in a file specified with the \f2\-overview\fP option. Note that this file is created only if you pass into javadoc two or more package names. For further explanation, see HTML Frames.)
704.RE
705
706.LP
707.LP
708\f3Cross\-Reference Pages\fP
709.LP
710.RS 3
711.TP 2
712o
713One \f3class hierarchy page for the entire set of packages\fP (\f2overview\-tree.html\fP). To view this, click on "Overview" in the navigation bar, then click on "Tree".
714.TP 2
715o
716One \f3class hierarchy page for each package\fP (\f2package\-tree.html\fP) To view this, go to a particular package, class or interface page; click "Tree" to display the hierarchy for that package.
717.TP 2
718o
719One \f3"use" page\fP for each package (\f2package\-use.html\fP) and a separate one for each class and interface (\f2class\-use/\fP\f2classname\fP\f2.html\fP). This page describes what packages, classes, methods, constructors and fields use any part of the given class, interface or package. Given a class or interface A, its "use" page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
720.TP 2
721o
722A \f3deprecated API page\fP (\f2deprecated\-list.html\fP) listing all deprecated names. (A deprecated name is not recommended for use, generally due to improvements, and a replacement name is usually given. Deprecated APIs may be removed in future implementations.)
723.TP 2
724o
725A \f3constant field values page\fP (\f2constant\-values.html\fP) for the values of static fields.
726.TP 2
727o
728A \f3serialized form page\fP (\f2serialized\-form.html\fP) for information about serializable and externalizable classes. Each such class has a description of its serialization fields and methods. This information is of interest to re\-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class comment. The standard doclet automatically generates a serialized form page: any class (public or non\-public) that implements Serializable is included, along with \f2readObject\fP and \f2writeObject\fP methods, the fields that are serialized, and the doc comments from the \f2@serial\fP, \f2@serialField\fP, and \f2@serialData\fP tags. Public serializable classes can be excluded by marking them (or their package) with \f2@serial exclude\fP, and package\-private serializable classes can be included by marking them (or their package) with \f2@serial include\fP. As of 1.4, you can generate the complete serialized form for public and private classes by running javadoc \f2without\fP specifying the \f2\-private\fP option.
729.TP 2
730o
731An \f3index\fP (\f2index\-*.html\fP) of all class, interface, constructor, field and method names, alphabetically arranged. This is internationalized for Unicode and can be generated as a single file or as a separate file for each starting character (such as A\-Z for English).
732.RE
733
734.LP
735.LP
736\f3Support Files\fP
737.LP
738.RS 3
739.TP 2
740o
741A \f3help page\fP (\f2help\-doc.html\fP) that describes the navigation bar and the above pages. You can provide your own custom help file to override the default using \f2\-helpfile\fP.
742.TP 2
743o
744One \f3index.html file\fP which creates the HTML frames for display. This is the file you load to display the front page with frames. This file itself contains no text content.
745.TP 2
746o
747Several \f3frame files\fP (\f2*\-frame.html\fP) containing lists of packages, classes and interfaces, used when HTML frames are being displayed.
748.TP 2
749o
750A \f3package list\fP file (\f2package\-list\fP), used by the \f2\-link\fP and \f2\-linkoffline\fP options. This is a text file, not HTML, and is not reachable through any links.
751.TP 2
752o
753A \f3style sheet\fP file (\f2stylesheet.css\fP) that controls a limited amount of color, font family, font size, font style and positioning on the generated pages.
754.TP 2
755o
756A \f3doc\-files\fP directory that holds any image, example, source code or other files that you want copied to the destination directory. These files are not processed by the Javadoc tool in any manner \-\- that is, any javadoc tags in them will be ignored. This directory is not generated unless it exists in the source tree.
757.RE
758
759.LP
760.LP
761\f3HTML Frames\fP
762.LP
763.LP
764The Javadoc tool will generate either two or three HTML frames, as shown in the figure below. It creates the minimum necessary number of frames by omitting the list of packages if there is only one package (or no packages). That is, when you pass a single package name or source files (*.java) belonging to a single package as arguments into the javadoc command, it will create only one frame (C) in the left\-hand column \-\- the list of classes. When you pass into javadoc two or more package names, it creates a third frame (P) listing all packages, as well as an overview page (Detail). This overview page has the filename \f2overview\-summary.html\fP. Thus, this file is created only if you pass in two or more package names. You can bypass frames by clicking on the "No Frames" link or entering at overview\-summary.html.
765.LP
766.LP
767If you are unfamiliar with HTML frames, you should be aware that frames can have \f2focus\fP for printing and scrolling. To give a frame focus, click on it. Then on many browsers the arrow keys and page keys will scroll that frame, and the print menu command will print it.
768.LP
769.nf
770\f3
771.fl
772 \-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\-\-\-\-\-
773.fl
774 |C| Detail | |P| Detail |
775.fl
776 | | | | | |
777.fl
778 | | | |\-| |
779.fl
780 | | | |C| |
781.fl
782 | | | | | |
783.fl
784 | | | | | |
785.fl
786 \-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\-\-\-\-\-
787.fl
788 javadoc *.java javadoc java.lang java.awt
789.fl
790\fP
791.fi
792
793.LP
794.LP
795Load one of the following two files as the starting page depending on whether you want HTML frames or not:
796.LP
797.RS 3
798.TP 2
799o
800\f2index.html\fP (for frames)
801.TP 2
802o
803\f2overview\-summary.html\fP (for no frames)
804.RE
805
806.LP
807.LP
808\f3Generated File Structure\fP
809.LP
810.LP
811The generated class and interface files are organized in the same directory hierarchy that Java source files and class files are organized. This structure is one directory per subpackage.
812.LP
813.LP
814For example, the document generated for the class \f2java.applet.Applet\fP class would be located at \f2java/applet/Applet.html\fP. The file structure for the java.applet package follows, given that the destination directory is named \f2apidocs\fP. All files that contain the word "frame" appear in the upper\-left or lower\-left frames, as noted. All other HTML files appear in the right\-hand frame.
815.LP
816.RS 3
817
818.LP
819.LP
820NOTE \- Directories are shown in \f3bold\fP. The asterisks (\f2*\fP) indicate the files and directories that are \f2omitted\fP when the arguments to javadoc are source filenames (*.java) rather than package names. Also when arguments are source filenames, \f2package\-list\fP is created but is empty. The doc\-files directory will not be created in the destination unless it exists in the source tree.
821.LP
822.RE
823.nf
824\f3
825.fl
826
827.fl
828\fP\f3apidocs\fP Top directory
829.fl
830 index.html Initial page that sets up HTML frames
831.fl
832 * overview\-summary.html Lists all packages with first sentence summaries
833.fl
834 overview\-tree.html Lists class hierarchy for all packages
835.fl
836 deprecated\-list.html Lists deprecated API for all packages
837.fl
838 constant\-values.html Lists values of static fields for all packages
839.fl
840 serialized\-form.html Lists serialized form for all packages
841.fl
842 * overview\-frame.html Lists all packages, used in upper\-left frame
843.fl
844 allclasses\-frame.html Lists all classes for all packages, used in lower\-left frame
845.fl
846 help\-doc.html Lists user help for how these pages are organized
847.fl
848 index\-all.html Default index created without \-splitindex option
849.fl
850 \f3index\-files\fP Directory created with \-splitindex option
851.fl
852 index\-<number>.html Index files created with \-splitindex option
853.fl
854 package\-list Lists package names, used only for resolving external refs
855.fl
856 stylesheet.css HTML style sheet for defining fonts, colors and positions
857.fl
858 \f3java\fP Package directory
859.fl
860 \f3applet\fP Subpackage directory
861.fl
862 Applet.html Page for Applet class
863.fl
864 AppletContext.html Page for AppletContext interface
865.fl
866 AppletStub.html Page for AppletStub interface
867.fl
868 AudioClip.html Page for AudioClip interface
869.fl
870 * package\-summary.html Lists classes with first sentence summaries for this package
871.fl
872 * package\-frame.html Lists classes in this package, used in lower left\-hand frame
873.fl
874 * package\-tree.html Lists class hierarchy for this package
875.fl
876 package\-use Lists where this package is used
877.fl
878 \f3doc\-files\fP Directory holding image and example files
879.fl
880 \f3class\-use\fP Directory holding pages API is used
881.fl
882 Applet.html Page for uses of Applet class
883.fl
884 AppletContext.html Page for uses of AppletContext interface
885.fl
886 AppletStub.html Page for uses of AppletStub interface
887.fl
888 AudioClip.html Page for uses of AudioClip interface
889.fl
890 \f3src\-html\fP Source code directory
891.fl
892 \f3java\fP Package directory
893.fl
894 \f3applet\fP Subpackage directory
895.fl
896 Applet.html Page for Applet source code
897.fl
898 AppletContext.html Page for AppletContext source code
899.fl
900 AppletStub.html Page for AppletStub source code
901.fl
902 AudioClip.html Page for AudioClip source code
903.fl
904.fi
905
906.LP
907.SS
908a name="generatedapideclarations"/> Generated API Declarations
909.LP
910.LP
911The Javadoc tool generates a declaration at the start of each class, interface, field, constructor, and method description for that API item. For example, the declaration for the \f2Boolean\fP class is:
912.LP
913.LP
914\f2public final class Boolean\fP
915.br
916\f2extends Object\fP
917.br
918\f2implements Serializable\fP
919.LP
920.LP
921and the declaration for the \f2Boolean.valueOf\fPmethod is:
922.LP
923.LP
924\f2public static Boolean valueOf(String s)\fP
925.LP
926.LP
927The Javadoc tool can include the modifiers \f2public\fP, \f2protected\fP, \f2private\fP, \f2abstract\fP, \f2final\fP, \f2static\fP, \f2transient\fP, and \f2volatile\fP, but not \f2synchronized\fP or \f2native\fP. These last two modifiers are considered implementation detail and not part of the API specification.
928.LP
929.LP
930Rather than relying on the keyword \f2synchronized\fP, APIs should document their concurrency semantics in the comment's main description, as in "a single \f2Enumeration\fP cannot be used by multiple threads concurrently". The document should not describe how to achieve these semantics. As another example, while \f2Hashtable\fP should be thread\-safe, there's no reason to specify that we achieve this by synchronizing all of its exported methods. We should reserve the right to synchronize internally at the bucket level, thus offering higher concurrency.
931.LP
932.SH "DOCUMENTATION COMMENTS"
933.LP
934.LP
935The original "Documentation Comment Specification" can be found under related documentation.
936.LP
937.SS
938Commenting the Source Code
939.LP
940.LP
941You can include \f2documentation comments\fP ("doc comments") in the source code, ahead of declarations for any class, interface, method, constructor, or field. You can also create doc comments for each package and another one for the overview, though their syntax is slightly different. Doc comments are also known informally as "Javadoc comments" (but this term violates its trademark usage). A doc comment consists of the characters between the characters \f2/**\fP that begin the comment and the characters \f2*/\fP that end it. Leading asterisks are allowed on each line and are described further below. The text in a comment can continue onto multiple lines.
942.LP
943.nf
944\f3
945.fl
946/**
947.fl
948 * This is the typical format of a simple documentation comment
949.fl
950 * that spans two lines.
951.fl
952 */
953.fl
954\fP
955.fi
956
957.LP
958.LP
959To save space you can put a comment on one line:
960.LP
961.nf
962\f3
963.fl
964/** This comment takes up only one line. */
965.fl
966\fP
967.fi
968
969.LP
970.LP
971\f3Placement of comments\fP \- Documentation comments are recognized only when placed immediately before class, interface, constructor, method, or field declarations \-\- see the class example, method example, and field example. Documentation comments placed in the body of a method are ignored. Only one documentation comment per declaration statement is recognized by the Javadoc tool.
972.LP
973.LP
974A common mistake is to put an \f2import\fP statement between the class comment and the class declaration. Avoid this, as the Javadoc tool will ignore the class comment.
975.LP
976.nf
977\f3
978.fl
979 /**
980.fl
981 * This is the class comment for the class Whatever.
982.fl
983 */
984.fl
985
986.fl
987 import com.sun; // MISTAKE \- Important not to put import statement here
988.fl
989
990.fl
991 public class Whatever {
992.fl
993 }
994.fl
995\fP
996.fi
997
998.LP
999.LP
1000\f3A doc comment is composed of a \fP\f4main description\fP\f3 followed by a \fP\f4tag section\fP \- The \f2main description\fP begins after the starting delimiter \f2/**\fP and continues until the tag section. The \f2tag section\fP starts with the first block tag, which is defined by the first \f2@\fP character that begins a line (ignoring leading asterisks, white space, and leading separator \f2/**\fP). It is possible to have a comment with only a tag section and no main description. The main description cannot continue after the tag section begins. The argument to a tag can span multiple lines. There can be any number of tags \-\- some types of tags can be repeated while others cannot. For example, this \f2@see\fP starts the tag section:
1001.LP
1002.nf
1003\f3
1004.fl
1005/**
1006.fl
1007 * This sentence would hold the main description for this doc comment.
1008.fl
1009 * @see java.lang.Object
1010.fl
1011 */
1012.fl
1013\fP
1014.fi
1015
1016.LP
1017.LP
1018\f3Block tags and in\-line tags\fP \- A \f2tag\fP is a special keyword within a doc comment that the Javadoc tool can process. There are two kinds of tags: block tags, which appear as \f2@tag\fP (also known as "standalone tags"), and in\-line tags, which appear within curly braces, as \f2{@tag}\fP. To be interpreted, a block tag must appear at the beginning of a line, ignoring leading asterisks, white space, and separator (\f2/**\fP). This means you can use the \f2@\fP character elsewhere in the text and it will not be interpreted as the start of a tag. If you want to start a line with the \f2@\fP character and not have it be interpreted, use the HTML entity \f2&#064;\fP. Each block tag has associated text, which includes any text following the tag up to, but not including, either the next tag, or the end of the doc comment. This associated text can span multiple lines. An in\-line tag is allowed and interpreted anywhere that text is allowed. The following example contains the block tag \f2@deprecated\fP and in\-line tag \f2{@link}\fP.
1019.LP
1020.nf
1021\f3
1022.fl
1023/**
1024.fl
1025 * @deprecated As of JDK 1.1, replaced by {@link #setBounds(int,int,int,int)}
1026.fl
1027 */
1028.fl
1029\fP
1030.fi
1031
1032.LP
1033.LP
1034\f3Comments are written in HTML\fP \- The text must be written in HTML, in that they should use HTML entities and can use HTML tags. You can use whichever version of HTML your browser supports; we have written the standard doclet to generate HTML 3.2\-compliant code elsewhere (outside of the documentation comments) with the inclusion of cascading style sheets and frames. (We preface each generated file with "HTML 4.0" because of the frame sets.)
1035.LP
1036.LP
1037For example, entities for the less\-than (\f2<\fP) and greater\-than (\f2>\fP) symbols should be written \f2<\fP and \f2>\fP. Likewise, the ampersand (\f2&\fP) should be written \f2&\fP. The bold HTML tag \f2<b>\fP is shown in the following example.
1038.LP
1039.LP
1040Here is a doc comment:
1041.LP
1042.nf
1043\f3
1044.fl
1045/**
1046.fl
1047 * This is a <b>doc</b> comment.
1048.fl
1049 * @see java.lang.Object
1050.fl
1051 */
1052.fl
1053\fP
1054.fi
1055
1056.LP
1057.LP
1058\f3Leading asterisks\fP \- When javadoc parses a doc comment, leading asterisk (\f2*\fP) characters on each line are discarded; blanks and tabs preceding the initial asterisk (\f2*\fP) characters are also discarded. Starting with 1.4, if you omit the leading asterisk on a line, the leading white space is no longer removed. This enables you to paste code examples directly into a doc comment inside a \f2<PRE>\fP tag, and its indentation will be honored. Spaces are generally interpreted by browsers more uniformly than tabs. Indentation is relative to the left margin (rather than the separator \f2/**\fP or \f2<PRE>\fP tag).
1059.LP
1060.LP
1061\f3First sentence\fP \- The first sentence of each doc comment should be a summary sentence, containing a concise but complete description of the declared entity. This sentence ends at the first period that is followed by a blank, tab, or line terminator, or at the first block tag. The Javadoc tool copies this first sentence to the member summary at the top of the HTML page.
1062.LP
1063.LP
1064\f3Declaration with multiple fields\fP \- Java allows declaring multiple fields in a single statement, but this statement can have only one documentation comment, which is copied for all fields. Therefore if you want individual documentation comments for each field, you must declare each field in a separate statement. For example, the following documentation comment doesn't make sense written as a single declaration and would be better handled as two declarations:
1065.LP
1066.RS 3
1067
1068.LP
1069.nf
1070\f3
1071.fl
1072/**
1073.fl
1074 * The horizontal and vertical distances of point (x,y)
1075.fl
1076 */
1077.fl
1078public int x, y; // Avoid this
1079.fl
1080\fP
1081.fi
1082.RE
1083
1084.LP
1085.LP
1086The Javadoc tool generates the following documentation from the above code:
1087.LP
1088.RS 3
1089
1090.LP
1091.nf
1092\f3
1093.fl
1094public int \fP\f3x\fP
1095.fl
1096.fi
1097
1098.LP
1099.RS 3
1100The horizontal and vertical distances of point (x,y)
1101.RE
1102
1103.LP
1104.nf
1105\f3
1106.fl
1107public int \fP\f3y\fP
1108.fl
1109.fi
1110
1111.LP
1112.RS 3
1113The horizontal and vertical distances of point (x,y)
1114.RE
1115
1116.LP
1117.RE
1118.LP
1119\f3Use header tags carefully\fP \- When writing documentation comments for members, it's best not to use HTML heading tags such as <H1> and <H2>, because the Javadoc tool creates an entire structured document and these structural tags might interfere with the formatting of the generated document. However, it is fine to use these headings in class and package comments to provide your own structure.
1120.LP
1121.SS
1122Automatic Copying of Method Comments
1123.LP
1124.LP
1125The Javadoc tool has the ability to copy or "inherit" method comments in classes and interfaces under the following two circumstances. Constructors, fields and nested classes do not inherit doc comments.
1126.LP
1127.RS 3
1128.TP 2
1129o
1130\f3Automatically inherit comment to fill in missing text\fP \- When a main description, or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag is missing from a method comment, the Javadoc tool copies the corresponding main description or tag comment from the method it overrides or implements (if any), according to the algorithm below.
1131.LP
1132More specifically, when a \f2@param\fP tag for a particular parameter is missing, then the comment for that parameter is copied from the method further up the inheritance hierarchy. When a \f2@throws\fP tag for a particular exception is missing, the \f2@throws\fP tag is copied \f2only if that exception is declared\fP.
1133.LP
1134This behavior contrasts with version 1.3 and earlier, where the presence of any main description or tag would prevent all comments from being inherited.
1135.TP 2
1136o
1137\f3Explicitly inherit comment with {@inheritDoc} tag\fP \- Insert the inline tag \f2{@inheritDoc}\fP in a method main description or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag comment \-\- the corresponding inherited main description or tag comment is copied into that spot.
1138.RE
1139
1140.LP
1141.LP
1142The source file for the inherited method need only be on the path specified by \-sourcepath for the doc comment to actually be available to copy. Neither the class nor its package needs to be passed in on the command line. This contrasts with 1.3.x and earlier releases, where the class had to be a documented class
1143.LP
1144.LP
1145\f3Inherit from classes and interfaces\fP \- Inheriting of comments occurs in all three possible cases of inheritance from classes and interfaces:
1146.LP
1147.RS 3
1148.TP 2
1149o
1150When a method in a class overrides a method in a superclass
1151.TP 2
1152o
1153When a method in an interface overrides a method in a superinterface
1154.TP 2
1155o
1156When a method in a class implements a method in an interface
1157.RE
1158
1159.LP
1160.LP
1161In the first two cases, for method overrides, the Javadoc tool generates a subheading "Overrides" in the documentation for the overriding method, with a link to the method it is overriding, whether or not the comment is inherited.
1162.LP
1163.LP
1164In the third case, when a method in a given class implements a method in an interface, the Javadoc tool generates a subheading "Specified by" in the documentation for the overriding method, with a link to the method it is implementing. This happens whether or not the comment is inherited.
1165.LP
1166.LP
1167\f3Algorithm for Inheriting Method Comments\fP \- If a method does not have a doc comment, or has an {@inheritDoc} tag, the Javadoc tool searches for an applicable comment using the following algorithm, which is designed to find the most specific applicable doc comment, giving preference to interfaces over superclasses:
1168.LP
1169.RS 3
1170.TP 3
11711.
1172Look in each directly implemented (or extended) interface in the order they appear following the word implements (or extends) in the method declaration. Use the first doc comment found for this method.
1173.TP 3
11742.
1175If step 1 failed to find a doc comment, recursively apply this entire algorithm to each directly implemented (or extended) interface, in the same order they were examined in step 1.
1176.TP 3
11773.
1178If step 2 failed to find a doc comment and this is a class other than Object (not an interface):
1179.RS 3
1180.TP 3
1181a.
1182If the superclass has a doc comment for this method, use it.
1183.TP 3
1184b.
1185If step 3a failed to find a doc comment, recursively apply this entire algorithm to the superclass.
1186.RE
1187.RE
1188
1189.LP
1190.SH "JAVADOC TAGS"
1191.LP
1192.LP
1193The Javadoc tool parses special tags when they are embedded within a Java doc comment. These doc tags enable you to autogenerate a complete, well\-formatted API from your source code. The tags start with an "at" sign (\f2@\fP) and are case\-sensitive \-\- they must be typed with the uppercase and lowercase letters as shown. A tag must start at the beginning of a line (after any leading spaces and an optional asterisk) or it is treated as normal text. By convention, tags with the same name are grouped together. For example, put all \f2@see\fP tags together.
1194.LP
1195.LP
1196Tags come in two types:
1197.LP
1198.RS 3
1199.TP 2
1200o
1201\f3Block tags\fP \- Can be placed only in the tag section that follows the main description. Block tags are of the form: \f2@tag\fP.
1202.TP 2
1203o
1204\f3Inline tags\fP \- Can be placed anywhere in the main description or in the comments for block tags. Inline tags are denoted by curly braces: \f2{@tag}\fP.
1205.RE
1206
1207.LP
1208.LP
1209For information about tags we might introduce in future releases, see
1210.na
1211\f2Proposed Tags\fP @
1212.fi
1213http://java.sun.com/j2se/javadoc/proposed\-tags.html.
1214.LP
1215.LP
1216The current tags are:
1217.LP
1218.RS 3
1219
1220.LP
1221.LP
1222.TS
1223.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
1224.de 35
1225.ps \n(.s
1226.vs \n(.vu
1227.in \n(.iu
1228.if \n(.u .fi
1229.if \n(.j .ad
1230.if \n(.j=0 .na
1231..
1232.nf
1233.nr #~ 0
1234.if n .nr #~ 0.6n
1235.ds #d .d
1236.if \(ts\n(.z\(ts\(ts .ds #d nl
1237.fc
1238.nr 33 \n(.s
1239.rm 80 81
1240.nr 80 0
1241.nr 38 \w\f3Tag\fP
1242.if \n(80<\n(38 .nr 80 \n(38
1243.nr 38 \w\f2@author\fP
1244.if \n(80<\n(38 .nr 80 \n(38
1245.nr 38 \w\f2{@code}\fP
1246.if \n(80<\n(38 .nr 80 \n(38
1247.nr 38 \w\f2{@docRoot}\fP
1248.if \n(80<\n(38 .nr 80 \n(38
1249.nr 38 \w\f2@deprecated\fP
1250.if \n(80<\n(38 .nr 80 \n(38
1251.nr 38 \w\f2@exception\fP
1252.if \n(80<\n(38 .nr 80 \n(38
1253.nr 38 \w\f2{@inheritDoc}\fP
1254.if \n(80<\n(38 .nr 80 \n(38
1255.nr 38 \w\f2{@link}\fP
1256.if \n(80<\n(38 .nr 80 \n(38
1257.nr 38 \w\f2{@linkplain}\fP
1258.if \n(80<\n(38 .nr 80 \n(38
1259.nr 38 \w\f2{@literal}\fP
1260.if \n(80<\n(38 .nr 80 \n(38
1261.nr 38 \w\f2@param\fP
1262.if \n(80<\n(38 .nr 80 \n(38
1263.nr 38 \w\f2@return\fP
1264.if \n(80<\n(38 .nr 80 \n(38
1265.nr 38 \w\f2@see\fP
1266.if \n(80<\n(38 .nr 80 \n(38
1267.nr 38 \w\f2@serial\fP
1268.if \n(80<\n(38 .nr 80 \n(38
1269.nr 38 \w\f2@serialData\fP
1270.if \n(80<\n(38 .nr 80 \n(38
1271.nr 38 \w\f2@serialField\fP
1272.if \n(80<\n(38 .nr 80 \n(38
1273.nr 38 \w\f2@since\fP
1274.if \n(80<\n(38 .nr 80 \n(38
1275.nr 38 \w\f2@throws\fP
1276.if \n(80<\n(38 .nr 80 \n(38
1277.nr 38 \w\f2{@value}\fP
1278.if \n(80<\n(38 .nr 80 \n(38
1279.nr 38 \w\f2@version\fP
1280.if \n(80<\n(38 .nr 80 \n(38
1281.80
1282.rm 80
1283.nr 81 0
1284.nr 38 \w\f3Introduced in JDK/SDK\fP
1285.if \n(81<\n(38 .nr 81 \n(38
1286.nr 38 \w1.0
1287.if \n(81<\n(38 .nr 81 \n(38
1288.nr 38 \w1.5
1289.if \n(81<\n(38 .nr 81 \n(38
1290.nr 38 \w1.3
1291.if \n(81<\n(38 .nr 81 \n(38
1292.nr 38 \w1.0
1293.if \n(81<\n(38 .nr 81 \n(38
1294.nr 38 \w1.0
1295.if \n(81<\n(38 .nr 81 \n(38
1296.nr 38 \w1.4
1297.if \n(81<\n(38 .nr 81 \n(38
1298.nr 38 \w1.2
1299.if \n(81<\n(38 .nr 81 \n(38
1300.nr 38 \w1.4
1301.if \n(81<\n(38 .nr 81 \n(38
1302.nr 38 \w1.5
1303.if \n(81<\n(38 .nr 81 \n(38
1304.nr 38 \w1.0
1305.if \n(81<\n(38 .nr 81 \n(38
1306.nr 38 \w1.0
1307.if \n(81<\n(38 .nr 81 \n(38
1308.nr 38 \w1.0
1309.if \n(81<\n(38 .nr 81 \n(38
1310.nr 38 \w1.2
1311.if \n(81<\n(38 .nr 81 \n(38
1312.nr 38 \w1.2
1313.if \n(81<\n(38 .nr 81 \n(38
1314.nr 38 \w1.2
1315.if \n(81<\n(38 .nr 81 \n(38
1316.nr 38 \w1.1
1317.if \n(81<\n(38 .nr 81 \n(38
1318.nr 38 \w1.2
1319.if \n(81<\n(38 .nr 81 \n(38
1320.nr 38 \w1.4
1321.if \n(81<\n(38 .nr 81 \n(38
1322.nr 38 \w1.0
1323.if \n(81<\n(38 .nr 81 \n(38
1324.81
1325.rm 81
1326.nr 38 1n
1327.nr 79 0
1328.nr 40 \n(79+(0*\n(38)
1329.nr 80 +\n(40
1330.nr 41 \n(80+(3*\n(38)
1331.nr 81 +\n(41
1332.nr TW \n(81
1333.if t .if \n(TW>\n(.li .tm Table at line 1084 file Input is too wide - \n(TW units
1334.fc  
1335.nr #T 0-1
1336.nr #a 0-1
1337.eo
1338.de T#
1339.ds #d .d
1340.if \(ts\n(.z\(ts\(ts .ds #d nl
1341.mk ##
1342.nr ## -1v
1343.ls 1
1344.ls
1345..
1346.ec
1347.ta \n(80u \n(81u
1348.nr 31 \n(.f
1349.nr 35 1m
1350\&\h'|\n(40u'\f3Tag\fP\h'|\n(41u'\f3Introduced in JDK/SDK\fP
1351.ta \n(80u \n(81u
1352.nr 31 \n(.f
1353.nr 35 1m
1354\&\h'|\n(40u'\f2@author\fP\h'|\n(41u'1.0
1355.ta \n(80u \n(81u
1356.nr 31 \n(.f
1357.nr 35 1m
1358\&\h'|\n(40u'\f2{@code}\fP\h'|\n(41u'1.5
1359.ta \n(80u \n(81u
1360.nr 31 \n(.f
1361.nr 35 1m
1362\&\h'|\n(40u'\f2{@docRoot}\fP\h'|\n(41u'1.3
1363.ta \n(80u \n(81u
1364.nr 31 \n(.f
1365.nr 35 1m
1366\&\h'|\n(40u'\f2@deprecated\fP\h'|\n(41u'1.0
1367.ta \n(80u \n(81u
1368.nr 31 \n(.f
1369.nr 35 1m
1370\&\h'|\n(40u'\f2@exception\fP\h'|\n(41u'1.0
1371.ta \n(80u \n(81u
1372.nr 31 \n(.f
1373.nr 35 1m
1374\&\h'|\n(40u'\f2{@inheritDoc}\fP\h'|\n(41u'1.4
1375.ta \n(80u \n(81u
1376.nr 31 \n(.f
1377.nr 35 1m
1378\&\h'|\n(40u'\f2{@link}\fP\h'|\n(41u'1.2
1379.ta \n(80u \n(81u
1380.nr 31 \n(.f
1381.nr 35 1m
1382\&\h'|\n(40u'\f2{@linkplain}\fP\h'|\n(41u'1.4
1383.ta \n(80u \n(81u
1384.nr 31 \n(.f
1385.nr 35 1m
1386\&\h'|\n(40u'\f2{@literal}\fP\h'|\n(41u'1.5
1387.ta \n(80u \n(81u
1388.nr 31 \n(.f
1389.nr 35 1m
1390\&\h'|\n(40u'\f2@param\fP\h'|\n(41u'1.0
1391.ta \n(80u \n(81u
1392.nr 31 \n(.f
1393.nr 35 1m
1394\&\h'|\n(40u'\f2@return\fP\h'|\n(41u'1.0
1395.ta \n(80u \n(81u
1396.nr 31 \n(.f
1397.nr 35 1m
1398\&\h'|\n(40u'\f2@see\fP\h'|\n(41u'1.0
1399.ta \n(80u \n(81u
1400.nr 31 \n(.f
1401.nr 35 1m
1402\&\h'|\n(40u'\f2@serial\fP\h'|\n(41u'1.2
1403.ta \n(80u \n(81u
1404.nr 31 \n(.f
1405.nr 35 1m
1406\&\h'|\n(40u'\f2@serialData\fP\h'|\n(41u'1.2
1407.ta \n(80u \n(81u
1408.nr 31 \n(.f
1409.nr 35 1m
1410\&\h'|\n(40u'\f2@serialField\fP\h'|\n(41u'1.2
1411.ta \n(80u \n(81u
1412.nr 31 \n(.f
1413.nr 35 1m
1414\&\h'|\n(40u'\f2@since\fP\h'|\n(41u'1.1
1415.ta \n(80u \n(81u
1416.nr 31 \n(.f
1417.nr 35 1m
1418\&\h'|\n(40u'\f2@throws\fP\h'|\n(41u'1.2
1419.ta \n(80u \n(81u
1420.nr 31 \n(.f
1421.nr 35 1m
1422\&\h'|\n(40u'\f2{@value}\fP\h'|\n(41u'1.4
1423.ta \n(80u \n(81u
1424.nr 31 \n(.f
1425.nr 35 1m
1426\&\h'|\n(40u'\f2@version\fP\h'|\n(41u'1.0
1427.fc
1428.nr T. 1
1429.T# 1
1430.35
1431.TE
1432.if \n-(b.=0 .nr c. \n(.c-\n(d.-42
1433
1434.LP
1435.LP
1436For custom tags, see the \-tag option.
1437.LP
1438.RE
1439.RS 3
1440.TP 3
1441@author\ name\-text
1442Adds an "Author" entry with the specified \f2name\-text\fP to the generated docs when the \-author option is used. A doc comment may contain multiple \f2@author\fP tags. You can specify one name per \f2@author\fP tag or multiple names per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
1443.LP
1444For more details, see Where Tags Can Be Used and
1445.na
1446\f2writing @author tags\fP @
1447.fi
1448http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@author.
1449.LP
1450.TP 3
1451@deprecated\ deprecated\-text
1452.RS 3
1453
1454.LP
1455.LP
1456Note: Starting with JDK 5.0, you can deprecate a program element using the @Deprecated annotation.
1457.LP
1458.RE
1459.LP
1460Adds a comment indicating that this API should no longer be used (even though it may continue to work). The Javadoc tool moves the \f2deprecated\-text\fP ahead of the main description, placing it in italics and preceding it with a bold warning: "Deprecated". This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field.
1461.LP
1462The first sentence of \f2deprecated\-text\fP should at least tell the user when the API was deprecated and what to use as a replacement. The Javadoc tool copies just the first sentence to the summary section and index. Subsequent sentences can also explain why it has been deprecated. You should include a \f2{@link}\fP tag (for Javadoc 1.2 or later) that points to the replacement API:
1463.LP
1464For more details, see
1465.na
1466\f2writing @deprecated tags\fP @
1467.fi
1468http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@deprecated.
1469.RS 3
1470.TP 2
1471o
1472For Javadoc 1.2 and later, use a \f2{@link}\fP tag. This creates the link in\-line, where you want it. For example:
1473.nf
1474\f3
1475.fl
1476/**
1477.fl
1478 * @deprecated As of JDK 1.1, replaced by {@link #setBounds(int,int,int,int)}
1479.fl
1480 */
1481.fl
1482\fP
1483.fi
1484.TP 2
1485o
1486For Javadoc 1.1, the standard format is to create a \f2@see\fP tag (which cannot be in\-line) for each \f2@deprecated\fP tag.
1487.RE
1488.LP
1489For more about deprecation, see The @deprecated tag.
1490.LP
1491.TP 3
1492{@code\ text}
1493Equivalent to \f2<code>{@literal}</code>\fP.
1494.LP
1495Displays \f2text\fP in \f2code\fP font without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
1496.nf
1497\f3
1498.fl
1499 \fP\f4{@code A<B>C}\fP\f3
1500.fl
1501\fP
1502.fi
1503displays in the generated HTML page unchanged, as:
1504.nf
1505\f3
1506.fl
1507 \fP\f4A<B>C\fP\f3
1508.fl
1509\fP
1510.fi
1511The noteworthy point is that the \f2<B>\fP is not interpreted as bold and is in code font.
1512.LP
1513If you want the same functionality without the code font, use \f2{@literal}\fP.
1514.LP
1515.TP 3
1516{@docRoot}
1517Represents the relative path to the generated document's (destination) root directory from any generated page. It is useful when you want to include a file, such as a copyright page or company logo, that you want to reference from all generated pages. Linking to the copyright page from the bottom of each page is common.
1518.LP
1519This \f2{@docRoot}\fP tag can be used both on the command line and in a doc comment: This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
1520.RS 3
1521.TP 3
15221.
1523On the command line, where the header/footer/bottom are defined:
1524.nf
1525\f3
1526.fl
1527 javadoc \-bottom '<a href="{@docRoot}/copyright.html">Copyright</a>'
1528.fl
1529\fP
1530.fi
1531NOTE \- When using \f2{@docRoot}\fP this way in a make file, some makefile programs require special escaping for the brace {} characters. For example, the Inprise MAKE version 5.2 running on Windows requires double braces: \f2{{@docRoot}}\fP. It also requires double (rather than single) quotes to enclose arguments to options such as \f2\-bottom\fP (with the quotes around the \f2href\fP argument omitted).
1532.TP 3
15332.
1534In a doc comment:
1535.nf
1536\f3
1537.fl
1538 /**
1539.fl
1540 * See the <a href="{@docRoot}/copyright.html">Copyright</a>.
1541.fl
1542 */
1543.fl
1544\fP
1545.fi
1546.RE
1547The reason this tag is needed is because the generated docs are in hierarchical directories, as deep as the number of subpackages. This expression:
1548.nf
1549\f3
1550.fl
1551 <a href="{@docRoot}/copyright.html">
1552.fl
1553\fP
1554.fi
1555would resolve to:
1556.nf
1557\f3
1558.fl
1559 <a href="../../copyright.html"> for java/lang/Object.java
1560.fl
1561\fP
1562.fi
1563and
1564.nf
1565\f3
1566.fl
1567 <a href="../../../copyright.html"> for java/lang/ref/Reference.java
1568.fl
1569\fP
1570.fi
1571.LP
1572.TP 3
1573@exception\ class\-name\ description
1574The \f2@exception\fP tag is a synonym for \f2@throws\fP.
1575.LP
1576.TP 3
1577{@inheritDoc}\
1578Inherits (copies) documentation from the "nearest" inheritable class or implementable interface into the current doc comment at this tag's location. This allows you to write more general comments higher up the inheritance tree, and to write around the copied text.
1579.LP
1580This tag is valid only in these places in a doc comment:
1581.RS 3
1582.TP 2
1583o
1584In the main description block of a method. In this case, the main description is copied from a class or interface up the hierarchy.
1585.TP 2
1586o
1587In the text arguments of the @return, @param and @throws tags of a method. In this case, the tag text is copied from the corresponding tag up the hierarchy.
1588.RE
1589.LP
1590See Automatic Copying of Method Comments for a more precise description of how comments are found in the inheritance hierarchy. Note that if this tag is missing, the comment is or is not automatically inherited according to rules described in that section.
1591.LP
1592.TP 3
1593{@link\ package.class#member\ label}
1594Inserts an in\-line link with visible text \f2label\fP that points to the documentation for the specified package, class or member name of a referenced class. This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
1595.LP
1596This tag is very simliar to \f2@see\fP \-\- both require the same references and accept exactly the same syntax for \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. The main difference is that \f2{@link}\fP generates an in\-line link rather than placing the link in the "See Also" section. Also, the \f2{@link}\fP tag begins and ends with curly braces to separate it from the rest of the in\-line text. If you need to use "}" inside the label, use the HTML entity notation &#125;
1597.LP
1598There is no limit to the number of \f2{@link}\fP tags allowed in a sentence. You can use this tag in the main description part of any documentation comment or in the text portion of any tag (such as @deprecated, @return or @param).
1599.LP
1600For example, here is a comment that refers to the \f2getComponentAt(int, int)\fP method:
1601.nf
1602\f3
1603.fl
1604Use the {@link #getComponentAt(int, int) getComponentAt} method.
1605.fl
1606\fP
1607.fi
1608From this, the standard doclet would generate the following HTML (assuming it refers to another class in the same package):
1609.nf
1610\f3
1611.fl
1612Use the <a href="Component.html#getComponentAt(int, int)">getComponentAt</a> method.
1613.fl
1614\fP
1615.fi
1616Which appears on the web page as:
1617.nf
1618\f3
1619.fl
1620Use the getComponentAt method.
1621.fl
1622\fP
1623.fi
1624You can extend \f2{@link}\fP to link to classes not being documented by using the \f2\-link\fP option.
1625.LP
1626For more details, see
1627.na
1628\f2writing {@link} tags\fP @
1629.fi
1630http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#{@link}.
1631.LP
1632.TP 3
1633{@linkplain\ package.class#member\ label}
1634Identical to \f2{@link}\fP, except the link's label is displayed in plain text than code font. Useful when the label is plain text. Example:
1635.nf
1636\f3
1637.fl
1638 Refer to {@linkplain add() the overridden method}.
1639.fl
1640\fP
1641.fi
1642This would display as:
1643.RS 3
1644.LP
1645Refer to the overridden method.
1646.LP
1647.RE
1648.TP 3
1649{@literal\ text}
1650Displays \f2text\fP without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
1651.nf
1652\f3
1653.fl
1654 \fP\f4{@literal A<B>C}\fP\f3
1655.fl
1656\fP
1657.fi
1658displays unchanged in the generated HTML page in your browser, as:
1659.LP
1660\f2\ \ \ \ \ \fPA<B>C The noteworthy point is that the \f2<B>\fP is not interpreted as bold (and it is not in code font).
1661.LP
1662If you want the same functionality but with the text in code font, use \f2{@code}\fP.
1663.LP
1664.TP 3
1665@param\ parameter\-name description
1666Adds a parameter with the specified \f2parameter\-name\fP followed by the specified \f2description\fP to the "Parameters" section. When writing the doc comment, you may continue the \f2description\fP onto multiple lines. This tag is valid only in a doc comment for a method, constructor or class.
1667.LP
1668The \f2parameter\-name\fP can be the name of a parameter in a method or constructor, or the name of a type parameter of a class, method or constructor. Use angle brackets around this parameter name to specify the use of a type parameter.
1669.LP
1670Example of a type parameter of a class:
1671.nf
1672\f3
1673.fl
1674 /**
1675.fl
1676 * @param <E> Type of element stored in a list
1677.fl
1678 */
1679.fl
1680 public interface List<E> extends Collection<E> {
1681.fl
1682 }
1683.fl
1684\fP
1685.fi
1686.LP
1687Example of a type parameter of a method:
1688.nf
1689\f3
1690.fl
1691 /**
1692.fl
1693 * @param string the string to be converted
1694.fl
1695 * @param type the type to convert the string to
1696.fl
1697 * @param <T> the type of the element
1698.fl
1699 * @param <V> the value of the element
1700.fl
1701 */
1702.fl
1703 <T, V extends T> V convert(String string, Class<T> type) {
1704.fl
1705 }
1706.fl
1707\fP
1708.fi
1709For more details, see
1710.na
1711\f2writing @param tags\fP @
1712.fi
1713http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@param.
1714.LP
1715.TP 3
1716@return\ description
1717Adds a "Returns" section with the \f2description\fP text. This text should describe the return type and permissible range of values. This tag is valid only in a doc comment for a method.
1718.LP
1719For more details, see
1720.na
1721\f2writing @return tags\fP @
1722.fi
1723http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@return.
1724.LP
1725.TP 3
1726@see\ reference
1727Adds a "See Also" heading with a link or text entry that points to \f2reference\fP. A doc comment may contain any number of \f2@see\fP tags, which are all grouped under the same heading. The \f2@see\fP tag has three variations; the third form below is the most common. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. For inserting an in\-line link within a sentence to a package, class or member, see \f2{@link}\fP.
1728.RS 3
1729.TP 3
1730@see "string"
1731Adds a text entry for \f2string\fP. No link is generated. The \f2string\fP is a book or other reference to information not available by URL. The Javadoc tool distinguishes this from the previous cases by looking for a double\-quote (\f2"\fP) as the first character. For example:
1732.nf
1733\f3
1734.fl
1735 @see "The Java Programming Language"
1736.fl
1737\fP
1738.fi
1739This generates text such as:
1740.RS 3
1741.RS 3
1742.TP 3
1743See Also:
1744"The Java Programming Language"
1745.RE
1746
1747.LP
1748.RE
1749.TP 3
1750@see <a href="URL#value">label</a>
1751Adds a link as defined by \f2URL\fP#\f2value\fP. The \f2URL\fP#\f2value\fP is a relative or absolute URL. The Javadoc tool distinguishes this from other cases by looking for a less\-than symbol (\f2<\fP) as the first character. For example:
1752.nf
1753\f3
1754.fl
1755 @see <a href="spec.html#section">Java Spec</a>
1756.fl
1757\fP
1758.fi
1759This generates a link such as:
1760.RS 3
1761.RS 3
1762.TP 3
1763See Also:
1764Java Spec
1765.RE
1766
1767.LP
1768.RE
1769.TP 3
1770@see\ package.class#member\ label
1771Adds a link, with visible text \f2label\fP, that points to the documentation for the specified name in the Java Language that is referenced. The \f2label\fP is optional; if omitted, the name appears instead as the visible text, suitably shortened \-\- see How a name is displayed. Use \-noqualifier to globally remove the package name from this visible text. Use the label when you want the visible text to be different from the auto\-generated visible text.
1772.LP
1773Only in version 1.2, just the name but not the label would automatically appear in <code> HTML tags, Starting with 1.2.2, the <code> is always included around the visible text, whether or not a label is used.
1774.LP
1775.RS 3
1776.TP 2
1777o
1778\f4package.class\fP\f4#\fP\f4member\fP is any valid program element name that is referenced \-\- a package, class, interface, constructor, method or field name \-\- except that the character ahead of the member name should be a hash character (\f2#\fP). The \f2class\fP represents any top\-level or nested class or interface. The \f2member\fP represents any constructor, method or field (not a nested class or interface). If this name is in the documented classes, the Javadoc tool will automatically create a link to it. To create links to external referenced classes, use the \f2\-link\fP option. Use either of the other two \f2@see\fP forms for referring to documentation of a name that does not belong to a referenced class. This argument is described at greater length below under Specifying a Name.
1779.TP 2
1780o
1781\f4label\fP is optional text that is visible as the link's label. The \f2label\fP can contain whitespace. If \f2label\fP is omitted, then \f2package.class.member\fP will appear, suitably shortened relative to the current class and package \-\- see How a name is displayed.
1782.TP 2
1783o
1784A space is the delimiter between \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. A space inside parentheses does not indicate the start of a label, so spaces may be used between parameters in a method.
1785.RE
1786.LP
1787\f3Example\fP \- In this example, an \f2@see\fP tag (in the \f2Character\fP class) refers to the \f2equals\fP method in the \f2String\fP class. The tag includes both arguments: the name "\f2String#equals(Object)\fP" and the label "\f2equals\fP".
1788.RS 3
1789.nf
1790\f3
1791.fl
1792 /**
1793.fl
1794 * @see String#equals(Object) equals
1795.fl
1796 */
1797.fl
1798\fP
1799.fi
1800.RE
1801The standard doclet produces HTML something like this:
1802.RS 3
1803
1804.LP
1805.nf
1806\f3
1807.fl
1808<dl>
1809.fl
1810<dt><b>See Also:</b>
1811.fl
1812<dd><a href="../../java/lang/String#equals(java.lang.Object)"><code>equals<code></a>
1813.fl
1814</dl>
1815.fl
1816\fP
1817.fi
1818.RE
1819Which looks something like this in a browser, where the label is the visible link text:
1820.RS 3
1821
1822.LP
1823.RS 3
1824.TP 3
1825See Also:
1826equals
1827.RE
1828
1829.LP
1830.RE
1831.LP
1832\f3Specifying a name\fP \- This \f2package.class\fP\f2#\fP\f2member\fP name can be either fully\-qualified, such as \f2java.lang.String#toUpperCase()\fP or not, such as \f2String#toUpperCase()\fP or \f2#toUpperCase()\fP. If less than fully\-qualified, the Javadoc tool uses the normal Java compiler search order to find it, further described below in Search order for @see. The name can contain whitespace within parentheses, such as between method arguments.
1833.LP
1834Of course the advantage of providing shorter, "partially\-qualified" names is that they are shorter to type and there is less clutter in the source code. The following table shows the different forms of the name, where \f2Class\fP can be a class or interface, \f2Type\fP can be a class, interface, array, or primitive, and \f2method\fP can be a method or constructor.
1835.LP
1836.LP
1837.TS
1838.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
1839.de 35
1840.ps \n(.s
1841.vs \n(.vu
1842.in \n(.iu
1843.if \n(.u .fi
1844.if \n(.j .ad
1845.if \n(.j=0 .na
1846..
1847.nf
1848.nr #~ 0
1849.if n .nr #~ 0.6n
1850.ds #d .d
1851.if \(ts\n(.z\(ts\(ts .ds #d nl
1852.fc
1853.nr 33 \n(.s
1854.rm 80
1855.nr 34 \n(.lu
1856.eo
1857.am 80
1858.br
1859.di a+
1860.35
1861.ft \n(.f
1862.ll \n(34u*1u/2u
1863.if \n(.l<\n(80 .ll \n(80u
1864.in 0
1865\f3Typical\ forms\ for\ \fP\f4@see\fP\f3\ \fP\f4package.class#member\fP
1866.br
1867.di
1868.nr a| \n(dn
1869.nr a- \n(dl
1870..
1871.ec \
1872.eo
1873.am 80
1874.br
1875.di b+
1876.35
1877.ft \n(.f
1878.ll \n(34u*1u/2u
1879.if \n(.l<\n(80 .ll \n(80u
1880.in 0
1881\f3Referencing\ a\ member\ of\ the\ current\ class\fP
1882.br
1883\f2@see\fP\ \f2#\fP\f2field\fP
1884.br
1885\f2@see\fP\ \f2#\fP\f2method(Type,\ Type,...)\fP
1886.br
1887\f2@see\fP\ \f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
1888.br
1889\f2@see\fP\ \f2#\fP\f2constructor(Type,\ Type,...)\fP
1890.br
1891\f2@see\fP\ \f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
1892.br
1893.di
1894.nr b| \n(dn
1895.nr b- \n(dl
1896..
1897.ec \
1898.eo
1899.am 80
1900.br
1901.di c+
1902.35
1903.ft \n(.f
1904.ll \n(34u*1u/2u
1905.if \n(.l<\n(80 .ll \n(80u
1906.in 0
1907\f3Referencing\ another\ class\ in\ the\ current\ or\ imported\ packages\fP
1908.br
1909\f2@see\fP\ \f2Class\fP\f2#\fP\f2field\fP
1910.br
1911\f2@see\fP\ \f2Class\fP\f2#\fP\f2method(Type,\ Type,...)\fP
1912.br
1913\f2@see\fP\ \f2Class\fP\f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
1914.br
1915\f2@see\fP\ \f2Class\fP\f2#\fP\f2constructor(Type,\ Type,...)\fP
1916.br
1917\f2@see\fP\ \f2Class\fP\f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
1918.br
1919\f2@see\fP\ \f2Class.NestedClass\fP
1920.br
1921\f2@see\fP\ \f2Class\fP
1922.br
1923.di
1924.nr c| \n(dn
1925.nr c- \n(dl
1926..
1927.ec \
1928.eo
1929.am 80
1930.br
1931.di d+
1932.35
1933.ft \n(.f
1934.ll \n(34u*1u/2u
1935.if \n(.l<\n(80 .ll \n(80u
1936.in 0
1937\f3Referencing\ an\ element\ in\ another\ package\fP\ (fully qualified)
1938.br
1939\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2field\fP
1940.br
1941\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2method(Type,\ Type,...)\fP
1942.br
1943\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
1944.br
1945\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2constructor(Type,\ Type,...)\fP
1946.br
1947\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
1948.br
1949\f2@see\fP\ \f2package.Class.NestedClass\fP
1950.br
1951\f2@see\fP\ \f2package.Class\fP
1952.br
1953\f2@see\fP\ \f2package\fP
1954.br
1955.di
1956.nr d| \n(dn
1957.nr d- \n(dl
1958..
1959.ec \
1960.35
1961.nf
1962.ll \n(34u
1963.nr 80 0
1964.80
1965.rm 80
1966.nr 38 \n(a-
1967.if \n(80<\n(38 .nr 80 \n(38
1968.nr 38 \n(b-
1969.if \n(80<\n(38 .nr 80 \n(38
1970.nr 38 \n(c-
1971.if \n(80<\n(38 .nr 80 \n(38
1972.nr 38 \n(d-
1973.if \n(80<\n(38 .nr 80 \n(38
1974.35
1975.nf
1976.ll \n(34u
1977.nr 38 1n
1978.nr 79 0
1979.nr 40 \n(79+(0*\n(38)
1980.nr 80 +\n(40
1981.nr TW \n(80
1982.if t .if \n(TW>\n(.li .tm Table at line 1547 file Input is too wide - \n(TW units
1983.fc  
1984.nr #T 0-1
1985.nr #a 0-1
1986.eo
1987.de T#
1988.ds #d .d
1989.if \(ts\n(.z\(ts\(ts .ds #d nl
1990.mk ##
1991.nr ## -1v
1992.ls 1
1993.ls
1994..
1995.ec
1996.ne \n(a|u+\n(.Vu
1997.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
1998.ta \n(80u
1999.nr 31 \n(.f
2000.nr 35 1m
2001\&\h'|\n(40u'
2002.mk ##
2003.nr 31 \n(##
2004.sp |\n(##u-1v
2005.nr 37 \n(40u
2006.in +\n(37u
2007.a+
2008.in -\n(37u
2009.mk 32
2010.if \n(32>\n(31 .nr 31 \n(32
2011.sp |\n(31u
2012.ne \n(b|u+\n(.Vu
2013.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
2014.ta \n(80u
2015.nr 31 \n(.f
2016.nr 35 1m
2017\&\h'|\n(40u'
2018.mk ##
2019.nr 31 \n(##
2020.sp |\n(##u-1v
2021.nr 37 \n(40u
2022.in +\n(37u
2023.b+
2024.in -\n(37u
2025.mk 32
2026.if \n(32>\n(31 .nr 31 \n(32
2027.sp |\n(31u
2028.ne \n(c|u+\n(.Vu
2029.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
2030.ta \n(80u
2031.nr 31 \n(.f
2032.nr 35 1m
2033\&\h'|\n(40u'
2034.mk ##
2035.nr 31 \n(##
2036.sp |\n(##u-1v
2037.nr 37 \n(40u
2038.in +\n(37u
2039.c+
2040.in -\n(37u
2041.mk 32
2042.if \n(32>\n(31 .nr 31 \n(32
2043.sp |\n(31u
2044.ne \n(d|u+\n(.Vu
2045.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
2046.ta \n(80u
2047.nr 31 \n(.f
2048.nr 35 1m
2049\&\h'|\n(40u'
2050.mk ##
2051.nr 31 \n(##
2052.sp |\n(##u-1v
2053.nr 37 \n(40u
2054.in +\n(37u
2055.d+
2056.in -\n(37u
2057.mk 32
2058.if \n(32>\n(31 .nr 31 \n(32
2059.sp |\n(31u
2060.fc
2061.nr T. 1
2062.T# 1
2063.35
2064.rm a+
2065.rm b+
2066.rm c+
2067.rm d+
2068.TE
2069.if \n-(b.=0 .nr c. \n(.c-\n(d.-58
2070.LP
2071The following notes apply to the above table:
2072.RS 3
2073.TP 2
2074o
2075The first set of forms (with no class or package) will cause the Javadoc tool to search only through the current class's hierarchy. It will find a member of the current class or interface, one of its superclasses or superinterfaces, or one of its enclosing classes or interfaces (search steps 1\-3). It will not search the rest of the current package or other packages (search steps 4\-5).
2076.TP 2
2077o
2078If any method or constructor is entered as a name with no parentheses, such as \f2getValue\fP, and if there is no field with the same name, the Javadoc tool will correctly create a link to it, but will print a warning message reminding you to add the parentheses and arguments. If this method is overloaded, the Javadoc tool will link to the first method its search encounters, which is unspecified.
2079.TP 2
2080o
2081Nested classes must be specified as \f2outer\fP\f2.\fP\f2inner\fP, not simply \f2inner\fP, for all forms.
2082.TP 2
2083o
2084As stated, the hash character (\f2#\fP), rather than a dot (\f2.\fP) separates a member from its class. This enables the Javadoc tool to resolve ambiguities, since the dot also separates classes, nested classes, packages, and subpackages. However, the Javadoc tool is generally lenient and will properly parse a dot if you know there is no ambiguity, though it will print a warning.
2085.RE
2086.LP
2087\f3Search order for @see\fP \- the Javadoc tool will process a \f2@see\fP tag that appears in a source file (.java), package file (package.html or package\-info.java) or overview file (overview.html). In the latter two files, you must fully\-qualify the name you supply with \f2@see\fP. In a source file, you can specify a name that is fully\-qualified or partially\-qualified.
2088.LP
2089When the Javadoc tool encounters a \f2@see\fP tag in a \f2.java\fP file that is \f2not\fP fully qualified, it searches for the specified name in the same order as the Java compiler would (except the Javadoc tool will not detect certain namespace ambiguities, since it assumes the source code is free of these errors). This search order is formally defined in Chapter 6, "Names" of the \f2Java Language Specification\fP, Second Edition. The Javadoc tool searches for that name through all related and imported classes and packages. In particular, it searches in this order:
2090.RS 3
2091.TP 3
20921.
2093the current class or interface
2094.TP 3
20952.
2096any enclosing classes and interfaces, searching closest first
2097.TP 3
20983.
2099any superclasses and superinterfaces, searching closest first
2100.TP 3
21014.
2102the current package
2103.TP 3
21045.
2105any imported packages, classes and interfaces, searching in the order of the import statement
2106.RE
2107.LP
2108The Javadoc tool continues to search recursively through steps 1\-3 for each class it encounters until it finds a match. That is, after it searches through the current class and its enclosing class E, it will search through E's superclasses before E's enclosing classes. In steps 4 and 5, the Javadoc tool does not search classes or interfaces within a package in any specified order (that order depends on the particular compiler). In step 5, the Javadoc tool looks in java.lang, since that is automatically imported by all programs.
2109.LP
2110The Javadoc tool does not necessarily look in subclasses, nor will it look in other packages even if their documentation is being generated in the same run. For example, if the \f2@see\fP tag is in the \f2java.awt.event.KeyEvent\fP class and refers to a name in the \f2java.awt\fP package, javadoc does not look in that package unless that class imports it.
2111.LP
2112\f3How a name is displayed\fP \- If \f2label\fP is omitted, then \f2package.class.member\fP appears. In general, it is suitably shortened relative to the current class and package. By "shortened", we mean the Javadoc tool displays only the minimum name necessary. For example, if the \f2String.toUpperCase()\fP method contains references to a member of the same class and to a member of a different class, the class name is displayed only in the latter case, as shown in the following table.
2113.LP
2114Use \-noqualifier to globally remove the package names.
2115.br
2116.LP
2117.TS
2118.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
2119.de 35
2120.ps \n(.s
2121.vs \n(.vu
2122.in \n(.iu
2123.if \n(.u .fi
2124.if \n(.j .ad
2125.if \n(.j=0 .na
2126..
2127.nf
2128.nr #~ 0
2129.if n .nr #~ 0.6n
2130.ds #d .d
2131.if \(ts\n(.z\(ts\(ts .ds #d nl
2132.fc
2133.nr 33 \n(.s
2134.rm 80 81 82
2135.nr 34 \n(.lu
2136.eo
2137.am 81
2138.br
2139.di a+
2140.35
2141.ft \n(.f
2142.ll \n(34u*1u/4u
2143.if \n(.l<\n(81 .ll \n(81u
2144.in 0
2145\f3Example in \fP\f4String.toUpperCase()\fP
2146.br
2147.di
2148.nr a| \n(dn
2149.nr a- \n(dl
2150..
2151.ec \
2152.eo
2153.am 80
2154.br
2155.di b+
2156.35
2157.ft \n(.f
2158.ll \n(34u*1u/4u
2159.if \n(.l<\n(80 .ll \n(80u
2160.in 0
2161\f2@see\fP tag refers to member of the same class, same package
2162.br
2163.di
2164.nr b| \n(dn
2165.nr b- \n(dl
2166..
2167.ec \
2168.eo
2169.am 82
2170.br
2171.di c+
2172.35
2173.ft \n(.f
2174.ll \n(34u*1u/4u
2175.if \n(.l<\n(82 .ll \n(82u
2176.in 0
2177\f2toLowerCase()\fP (omits the package and class names)
2178.br
2179.di
2180.nr c| \n(dn
2181.nr c- \n(dl
2182..
2183.ec \
2184.eo
2185.am 80
2186.br
2187.di d+
2188.35
2189.ft \n(.f
2190.ll \n(34u*1u/4u
2191.if \n(.l<\n(80 .ll \n(80u
2192.in 0
2193\f2@see\fP tag refers to member of a different class, same package
2194.br
2195.di
2196.nr d| \n(dn
2197.nr d- \n(dl
2198..
2199.ec \
2200.eo
2201.am 81
2202.br
2203.di e+
2204.35
2205.ft \n(.f
2206.ll \n(34u*1u/4u
2207.if \n(.l<\n(81 .ll \n(81u
2208.in 0
2209\f2@see Character#toLowerCase(char)\fP
2210.br
2211.di
2212.nr e| \n(dn
2213.nr e- \n(dl
2214..
2215.ec \
2216.eo
2217.am 82
2218.br
2219.di f+
2220.35
2221.ft \n(.f
2222.ll \n(34u*1u/4u
2223.if \n(.l<\n(82 .ll \n(82u
2224.in 0
2225\f2Character.toLowerCase(char)\fP (omits the package name, includes the class name)
2226.br
2227.di
2228.nr f| \n(dn
2229.nr f- \n(dl
2230..
2231.ec \
2232.eo
2233.am 80
2234.br
2235.di g+
2236.35
2237.ft \n(.f
2238.ll \n(34u*1u/4u
2239.if \n(.l<\n(80 .ll \n(80u
2240.in 0
2241\f2@see\fP tag refers to member of a different class, different package
2242.br
2243.di
2244.nr g| \n(dn
2245.nr g- \n(dl
2246..
2247.ec \
2248.eo
2249.am 81
2250.br
2251.di h+
2252.35
2253.ft \n(.f
2254.ll \n(34u*1u/4u
2255.if \n(.l<\n(81 .ll \n(81u
2256.in 0
2257\f2@see java.io.File#exists()\fP
2258.br
2259.di
2260.nr h| \n(dn
2261.nr h- \n(dl
2262..
2263.ec \
2264.eo
2265.am 82
2266.br
2267.di i+
2268.35
2269.ft \n(.f
2270.ll \n(34u*1u/4u
2271.if \n(.l<\n(82 .ll \n(82u
2272.in 0
2273\f2java.io.File.exists()\fP (includes the package and class names)
2274.br
2275.di
2276.nr i| \n(dn
2277.nr i- \n(dl
2278..
2279.ec \
2280.35
2281.nf
2282.ll \n(34u
2283.nr 80 0
2284.nr 38 \w\f3Type of Reference\fP
2285.if \n(80<\n(38 .nr 80 \n(38
2286.80
2287.rm 80
2288.nr 38 \n(b-
2289.if \n(80<\n(38 .nr 80 \n(38
2290.nr 38 \n(d-
2291.if \n(80<\n(38 .nr 80 \n(38
2292.nr 38 \n(g-
2293.if \n(80<\n(38 .nr 80 \n(38
2294.nr 81 0
2295.nr 38 \w\f2@see String#toLowerCase()\fP
2296.if \n(81<\n(38 .nr 81 \n(38
2297.81
2298.rm 81
2299.nr 38 \n(a-
2300.if \n(81<\n(38 .nr 81 \n(38
2301.nr 38 \n(e-
2302.if \n(81<\n(38 .nr 81 \n(38
2303.nr 38 \n(h-
2304.if \n(81<\n(38 .nr 81 \n(38
2305.nr 82 0
2306.nr 38 \w\f3Displays As\fP
2307.if \n(82<\n(38 .nr 82 \n(38
2308.82
2309.rm 82
2310.nr 38 \n(c-
2311.if \n(82<\n(38 .nr 82 \n(38
2312.nr 38 \n(f-
2313.if \n(82<\n(38 .nr 82 \n(38
2314.nr 38 \n(i-
2315.if \n(82<\n(38 .nr 82 \n(38
2316.35
2317.nf
2318.ll \n(34u
2319.nr 38 1n
2320.nr 79 0
2321.nr 40 \n(79+(0*\n(38)
2322.nr 80 +\n(40
2323.nr 41 \n(80+(3*\n(38)
2324.nr 81 +\n(41
2325.nr 42 \n(81+(3*\n(38)
2326.nr 82 +\n(42
2327.nr TW \n(82
2328.if t .if \n(TW>\n(.li .tm Table at line 1623 file Input is too wide - \n(TW units
2329.fc  
2330.nr #T 0-1
2331.nr #a 0-1
2332.eo
2333.de T#
2334.ds #d .d
2335.if \(ts\n(.z\(ts\(ts .ds #d nl
2336.mk ##
2337.nr ## -1v
2338.ls 1
2339.ls
2340..
2341.ec
2342.ne \n(a|u+\n(.Vu
2343.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
2344.ta \n(80u \n(81u \n(82u
2345.nr 31 \n(.f
2346.nr 35 1m
2347\&\h'|\n(40u'\f3Type of Reference\fP\h'|\n(41u'\h'|\n(42u'\f3Displays As\fP
2348.mk ##
2349.nr 31 \n(##
2350.sp |\n(##u-1v
2351.nr 37 \n(41u
2352.in +\n(37u
2353.a+
2354.in -\n(37u
2355.mk 32
2356.if \n(32>\n(31 .nr 31 \n(32
2357.sp |\n(31u
2358.ne \n(b|u+\n(.Vu
2359.ne \n(c|u+\n(.Vu
2360.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
2361.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
2362.ta \n(80u \n(81u \n(82u
2363.nr 31 \n(.f
2364.nr 35 1m
2365\&\h'|\n(40u'\h'|\n(41u'\f2@see String#toLowerCase()\fP\h'|\n(42u'
2366.mk ##
2367.nr 31 \n(##
2368.sp |\n(##u-1v
2369.nr 37 \n(40u
2370.in +\n(37u
2371.b+
2372.in -\n(37u
2373.mk 32
2374.if \n(32>\n(31 .nr 31 \n(32
2375.sp |\n(##u-1v
2376.nr 37 \n(42u
2377.in +\n(37u
2378.c+
2379.in -\n(37u
2380.mk 32
2381.if \n(32>\n(31 .nr 31 \n(32
2382.sp |\n(31u
2383.ne \n(d|u+\n(.Vu
2384.ne \n(e|u+\n(.Vu
2385.ne \n(f|u+\n(.Vu
2386.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
2387.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
2388.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
2389.ta \n(80u \n(81u \n(82u
2390.nr 31 \n(.f
2391.nr 35 1m
2392\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
2393.mk ##
2394.nr 31 \n(##
2395.sp |\n(##u-1v
2396.nr 37 \n(40u
2397.in +\n(37u
2398.d+
2399.in -\n(37u
2400.mk 32
2401.if \n(32>\n(31 .nr 31 \n(32
2402.sp |\n(##u-1v
2403.nr 37 \n(41u
2404.in +\n(37u
2405.e+
2406.in -\n(37u
2407.mk 32
2408.if \n(32>\n(31 .nr 31 \n(32
2409.sp |\n(##u-1v
2410.nr 37 \n(42u
2411.in +\n(37u
2412.f+
2413.in -\n(37u
2414.mk 32
2415.if \n(32>\n(31 .nr 31 \n(32
2416.sp |\n(31u
2417.ne \n(g|u+\n(.Vu
2418.ne \n(h|u+\n(.Vu
2419.ne \n(i|u+\n(.Vu
2420.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
2421.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
2422.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
2423.ta \n(80u \n(81u \n(82u
2424.nr 31 \n(.f
2425.nr 35 1m
2426\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
2427.mk ##
2428.nr 31 \n(##
2429.sp |\n(##u-1v
2430.nr 37 \n(40u
2431.in +\n(37u
2432.g+
2433.in -\n(37u
2434.mk 32
2435.if \n(32>\n(31 .nr 31 \n(32
2436.sp |\n(##u-1v
2437.nr 37 \n(41u
2438.in +\n(37u
2439.h+
2440.in -\n(37u
2441.mk 32
2442.if \n(32>\n(31 .nr 31 \n(32
2443.sp |\n(##u-1v
2444.nr 37 \n(42u
2445.in +\n(37u
2446.i+
2447.in -\n(37u
2448.mk 32
2449.if \n(32>\n(31 .nr 31 \n(32
2450.sp |\n(31u
2451.fc
2452.nr T. 1
2453.T# 1
2454.35
2455.rm a+
2456.rm b+
2457.rm c+
2458.rm d+
2459.rm e+
2460.rm f+
2461.rm g+
2462.rm h+
2463.rm i+
2464.TE
2465.if \n-(b.=0 .nr c. \n(.c-\n(d.-28
2466.LP
2467\f3Examples of @see\fP
2468.br
2469The comment to the right shows how the name would be displayed if the \f2@see\fP tag is in a class in another package, such as \f2java.applet.Applet\fP.
2470.nf
2471\f3
2472.fl
2473 See also:
2474.fl
2475@see java.lang.String // String \fP\f3
2476.fl
2477@see java.lang.String The String class // The String class \fP\f3
2478.fl
2479@see String // String \fP\f3
2480.fl
2481@see String#equals(Object) // String.equals(Object) \fP\f3
2482.fl
2483@see String#equals // String.equals(java.lang.Object) \fP\f3
2484.fl
2485@see java.lang.Object#wait(long) // java.lang.Object.wait(long) \fP\f3
2486.fl
2487@see Character#MAX_RADIX // Character.MAX_RADIX \fP\f3
2488.fl
2489@see <a href="spec.html">Java Spec</a> // Java Spec \fP\f3
2490.fl
2491@see "The Java Programming Language" // "The Java Programming Language" \fP\f3
2492.fl
2493\fP
2494.fi
2495You can extend \f2@see\fP to link to classes not being documented by using the \f2\-link\fP option.
2496.LP
2497For more details, see
2498.na
2499\f2writing @see tags\fP @
2500.fi
2501http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@see.
2502.RE
2503.TP 3
2504@serial\ field\-description | include | exclude
2505Used in the doc comment for a default serializable field.
2506.LP
2507An optional \f2field\-description\fP should explain the meaning of the field and list the acceptable values. If needed, the description can span multiple lines. The standard doclet adds this information to the serialized form page.
2508.LP
2509If a serializable field was added to a class some time after the class was made serializable, a statement should be added to its main description to identify at which version it was added.
2510.LP
2511The \f2include\fP and \f2exclude\fP arguments identify whether a class or package should be included or excluded from the serialized form page. They work as follows:
2512.RS 3
2513.TP 2
2514o
2515A public or protected class that implements \f2Serializable\fP is \f2included\fP unless that class (or its package) is marked \f2@serial exclude\fP.
2516.TP 2
2517o
2518A private or package\-private class that implements \f2Serializable\fP is \f2excluded\fP unless that class (or its package) is marked \f2@serial include\fP.
2519.RE
2520.LP
2521Examples: The \f2javax.swing\fP package is marked \f2@serial exclude\fP (in \f2package.html\fP or \f2package\-info.java\fP). The public class \f2java.security.BasicPermission\fP is marked \f2@serial exclude\fP. The package\-private class \f2java.util.PropertyPermissionCollection\fP is marked \f2@serial include\fP.
2522.LP
2523The tag @serial at a class level overrides @serial at a package level.
2524.LP
2525For more information about how to use these tags, along with an example, see "Documenting Serializable Fields and Data for a Class," Section 1.6 of the \f2Java Object Serialization Specification\fP. Also see the
2526.na
2527\f2Serialization FAQ\fP @
2528.fi
2529http://java.sun.com/products/jdk/serialization/faq/#javadoc_warn_missing, which covers common questions, such as "Why do I see javadoc warnings stating that I am missing @serial tags for private fields if I am not running javadoc with the \-private switch?". Also see
2530.na
2531\f2Sun's criteria\fP @
2532.fi
2533http://java.sun.com/j2se/javadoc/writingapispecs/serialized\-criteria.html for including classes in the serialized form specification.
2534.LP
2535.TP 3
2536@serialField\ field\-name\ field\-type\ field\-description
2537Documents an \f2ObjectStreamField\fP component of a \f2Serializable\fP class's \f2serialPersistentFields\fP member. One \f2@serialField\fP tag should be used for each \f2ObjectStreamField\fP component.
2538.LP
2539.TP 3
2540@serialData\ data\-description
2541The \f2data\-description\fP documents the types and order of data in the serialized form. Specifically, this data includes the optional data written by the \f2writeObject\fP method and all data (including base classes) written by the \f2Externalizable.writeExternal\fP method.
2542.LP
2543The \f2@serialData\fP tag can be used in the doc comment for the \f2writeObject\fP, \f2readObject\fP, \f2writeExternal\fP, \f2readExternal\fP, \f2writeReplace\fP, and \f2readResolve\fP methods.
2544.LP
2545.TP 3
2546@since\ since\-text
2547Adds a "Since" heading with the specified \f2since\-text\fP to the generated documentation. The text has no special internal structure. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. This tag means that this change or feature has existed since the software release specified by the \f2since\-text\fP. For example:
2548.nf
2549\f3
2550.fl
2551 @since 1.5
2552.fl
2553\fP
2554.fi
2555For source code in the Java platform, this tag indicates the version of the Java platform API specification (not necessarily when it was added to the reference implementation). Multiple @since tags are allowed and are treated like multiple @author tags. You could use multiple tags if the prgram element is used by more than one API.
2556.LP
2557.TP 3
2558@throws\ class\-name\ description
2559The \f2@throws\fP and \f2@exception\fP tags are synonyms. Adds a "Throws" subheading to the generated documentation, with the \f2class\-name\fP and \f2description\fP text. The \f2class\-name\fP is the name of the exception that may be thrown by the method. This tag is valid only in the doc comment for a method or constructor. If this class is not fully\-specified, the Javadoc tool uses the search order to look up this class. Multiple \f2@throws\fP tags can be used in a given doc comment for the same or different exceptions.
2560.LP
2561To ensure that all checked exceptions are documented, if a \f2@throws\fP tag does not exist for an exception in the throws clause, the Javadoc tool automatically adds that exception to the HTML output (with no description) as if it were documented with @throws tag.
2562.LP
2563The \f2@throws\fP documentation is copied from an overridden method to a subclass only when the exception is explicitly declared in the overridden method. The same is true for copying from an interface method to an implementing method. You can use {@inheritDoc} to force @throws to inherit documentation.
2564.LP
2565For more details, see
2566.na
2567\f2writing @throws tags\fP @
2568.fi
2569http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@exception.
2570.LP
2571.TP 3
2572{@value\ package.class#field}
2573When \f2{@value}\fP is used (without any argument) in the doc comment of a static field, it displays the value of that constant:
2574.nf
2575\f3
2576.fl
2577 /**
2578.fl
2579 * The value of this constant is {@value}.
2580.fl
2581 */
2582.fl
2583 public static final String SCRIPT_START = "<script>"
2584.fl
2585\fP
2586.fi
2587When used with argument \f2package.class#field\fP in any doc comment, it displays the value of the specified constant:
2588.nf
2589\f3
2590.fl
2591 /**
2592.fl
2593 * Evaluates the script starting with {@value #SCRIPT_START}.
2594.fl
2595 */
2596.fl
2597 public String evalScript(String script) {
2598.fl
2599 }
2600.fl
2601\fP
2602.fi
2603The argument \f2package.class#field\fP takes a form identical to that of the @see argument, except that the member must be a static field.
2604.LP
2605These values of these constants are also displayed on the Constant Field Values page.
2606.LP
2607.TP 3
2608@version\ version\-text
2609Adds a "Version" subheading with the specified \f2version\-text\fP to the generated docs when the \-version option is used. This tag is intended to hold the current version number of the software that this code is part of (as opposed to @since, which holds the version number where this code was introduced). The \f2version\-text\fP has no special internal structure. To see where the version tag can be used, see Where Tags Can Be Used.
2610.LP
2611A doc comment may contain multiple \f2@version\fP tags. If it makes sense, you can specify one version number per \f2@version\fP tag or multiple version numbers per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
2612.LP
2613For more details, see
2614.na
2615\f2writing @version tags\fP @
2616.fi
2617http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#@version.
2618.RE
2619.SS
2620Where Tags Can Be Used
2621.LP
2622.LP
2623The following sections describe where the tags can be used. Note that these tags can be used in all doc comments: \f2@see\fP, \f2@since\fP, \f2@deprecated\fP, \f2{@link}\fP, \f2{@linkplain}\fP, and \f2{@docroot}\fP.
2624.LP
2625.RS 3
2626
2627.LP
2628.SS
2629Overview Documentation Tags
2630.LP
2631.LP
2632Overview tags are tags that can appear in the documentation comment for the overview page (which resides in the source file typically named \f2overview.html\fP). Like in any other documentation comments, these tags must appear after the main description.
2633.LP
2634.LP
2635\f3NOTE\fP \- The \f2{@link}\fP tag has a bug in overview documents in version 1.2 \-\- the text appears properly but has no link. The \f2{@docRoot}\fP tag does not currently work in overview documents.
2636.LP
2637.LP
2638.TS
2639.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
2640.de 35
2641.ps \n(.s
2642.vs \n(.vu
2643.in \n(.iu
2644.if \n(.u .fi
2645.if \n(.j .ad
2646.if \n(.j=0 .na
2647..
2648.nf
2649.nr #~ 0
2650.if n .nr #~ 0.6n
2651.ds #d .d
2652.if \(ts\n(.z\(ts\(ts .ds #d nl
2653.fc
2654.nr 33 \n(.s
2655.rm 80
2656.nr 34 \n(.lu
2657.eo
2658.am 80
2659.br
2660.di a+
2661.35
2662.ft \n(.f
2663.ll \n(34u*1u/2u
2664.if \n(.l<\n(80 .ll \n(80u
2665.in 0
2666\f2@see\fP
2667.br
2668\f2@since\fP
2669.br
2670\f2@author\fP
2671.br
2672\f2@version\fP
2673.br
2674\f2{@link}\fP
2675.br
2676\f2{@linkplain}\fP
2677.br
2678\f2{@docRoot}\fP
2679.br
2680.di
2681.nr a| \n(dn
2682.nr a- \n(dl
2683..
2684.ec \
2685.35
2686.nf
2687.ll \n(34u
2688.nr 80 0
2689.nr 38 \w\f3Overview Tags\fP
2690.if \n(80<\n(38 .nr 80 \n(38
2691.80
2692.rm 80
2693.nr 38 \n(a-
2694.if \n(80<\n(38 .nr 80 \n(38
2695.35
2696.nf
2697.ll \n(34u
2698.nr 38 1n
2699.nr 79 0
2700.nr 40 \n(79+(0*\n(38)
2701.nr 80 +\n(40
2702.nr TW \n(80
2703.if t .if \n(TW>\n(.li .tm Table at line 1816 file Input is too wide - \n(TW units
2704.fc  
2705.nr #T 0-1
2706.nr #a 0-1
2707.eo
2708.de T#
2709.ds #d .d
2710.if \(ts\n(.z\(ts\(ts .ds #d nl
2711.mk ##
2712.nr ## -1v
2713.ls 1
2714.ls
2715..
2716.ec
2717.ta \n(80u
2718.nr 31 \n(.f
2719.nr 35 1m
2720\&\h'|\n(40u'\f3Overview Tags\fP
2721.ne \n(a|u+\n(.Vu
2722.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
2723.ta \n(80u
2724.nr 31 \n(.f
2725.nr 35 1m
2726\&\h'|\n(40u'
2727.mk ##
2728.nr 31 \n(##
2729.sp |\n(##u-1v
2730.nr 37 \n(40u
2731.in +\n(37u
2732.a+
2733.in -\n(37u
2734.mk 32
2735.if \n(32>\n(31 .nr 31 \n(32
2736.sp |\n(31u
2737.fc
2738.nr T. 1
2739.T# 1
2740.35
2741.rm a+
2742.TE
2743.if \n-(b.=0 .nr c. \n(.c-\n(d.-20
2744
2745.LP
2746.SS
2747Package Documentation Tags
2748.LP
2749.LP
2750Package tags are tags that can appear in the documentation comment for a package (which resides in the source file named \f2package.html\fP or \f2package\-info.java\fP). The \f2@serial\fP tag can only be used here with the \f2include\fP or \f2exclude\fP argument.
2751.LP
2752.LP
2753.TS
2754.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
2755.de 35
2756.ps \n(.s
2757.vs \n(.vu
2758.in \n(.iu
2759.if \n(.u .fi
2760.if \n(.j .ad
2761.if \n(.j=0 .na
2762..
2763.nf
2764.nr #~ 0
2765.if n .nr #~ 0.6n
2766.ds #d .d
2767.if \(ts\n(.z\(ts\(ts .ds #d nl
2768.fc
2769.nr 33 \n(.s
2770.rm 80
2771.nr 34 \n(.lu
2772.eo
2773.am 80
2774.br
2775.di a+
2776.35
2777.ft \n(.f
2778.ll \n(34u*1u/2u
2779.if \n(.l<\n(80 .ll \n(80u
2780.in 0
2781\f2@see\fP
2782.br
2783\f2@since\fP
2784.br
2785\f2@serial\fP
2786.br
2787\f2@author\fP
2788.br
2789\f2@version\fP
2790.br
2791\f2{@link}\fP
2792.br
2793\f2{@linkplain}\fP
2794.br
2795\f2{@docRoot}\fP
2796.br
2797.di
2798.nr a| \n(dn
2799.nr a- \n(dl
2800..
2801.ec \
2802.35
2803.nf
2804.ll \n(34u
2805.nr 80 0
2806.nr 38 \w\f3Package Tags\fP
2807.if \n(80<\n(38 .nr 80 \n(38
2808.80
2809.rm 80
2810.nr 38 \n(a-
2811.if \n(80<\n(38 .nr 80 \n(38
2812.35
2813.nf
2814.ll \n(34u
2815.nr 38 1n
2816.nr 79 0
2817.nr 40 \n(79+(0*\n(38)
2818.nr 80 +\n(40
2819.nr TW \n(80
2820.if t .if \n(TW>\n(.li .tm Table at line 1848 file Input is too wide - \n(TW units
2821.fc  
2822.nr #T 0-1
2823.nr #a 0-1
2824.eo
2825.de T#
2826.ds #d .d
2827.if \(ts\n(.z\(ts\(ts .ds #d nl
2828.mk ##
2829.nr ## -1v
2830.ls 1
2831.ls
2832..
2833.ec
2834.ta \n(80u
2835.nr 31 \n(.f
2836.nr 35 1m
2837\&\h'|\n(40u'\f3Package Tags\fP
2838.ne \n(a|u+\n(.Vu
2839.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
2840.ta \n(80u
2841.nr 31 \n(.f
2842.nr 35 1m
2843\&\h'|\n(40u'
2844.mk ##
2845.nr 31 \n(##
2846.sp |\n(##u-1v
2847.nr 37 \n(40u
2848.in +\n(37u
2849.a+
2850.in -\n(37u
2851.mk 32
2852.if \n(32>\n(31 .nr 31 \n(32
2853.sp |\n(31u
2854.fc
2855.nr T. 1
2856.T# 1
2857.35
2858.rm a+
2859.TE
2860.if \n-(b.=0 .nr c. \n(.c-\n(d.-22
2861
2862.LP
2863.SS
2864Class and Interface Documentation Tags
2865.LP
2866.LP
2867The following are tags that can appear in the documentation comment for a class or interface. The \f2@serial\fP tag can only be used here with the \f2include\fP or \f2exclude\fP argument.
2868.LP
2869.LP
2870.TS
2871.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
2872.de 35
2873.ps \n(.s
2874.vs \n(.vu
2875.in \n(.iu
2876.if \n(.u .fi
2877.if \n(.j .ad
2878.if \n(.j=0 .na
2879..
2880.nf
2881.nr #~ 0
2882.if n .nr #~ 0.6n
2883.ds #d .d
2884.if \(ts\n(.z\(ts\(ts .ds #d nl
2885.fc
2886.nr 33 \n(.s
2887.rm 80
2888.nr 34 \n(.lu
2889.eo
2890.am 80
2891.br
2892.di a+
2893.35
2894.ft \n(.f
2895.ll \n(34u*1u/2u
2896.if \n(.l<\n(80 .ll \n(80u
2897.in 0
2898\f2@see\fP
2899.br
2900\f2@since\fP
2901.br
2902\f2@deprecated\fP
2903.br
2904\f2@serial\fP
2905.br
2906\f2@author\fP
2907.br
2908\f2@version\fP
2909.br
2910\f2{@link}\fP
2911.br
2912\f2{@linkplain}\fP
2913.br
2914\f2{@docRoot}\fP
2915.br
2916.di
2917.nr a| \n(dn
2918.nr a- \n(dl
2919..
2920.ec \
2921.35
2922.nf
2923.ll \n(34u
2924.nr 80 0
2925.nr 38 \w\f3Class/Interface Tags\fP
2926.if \n(80<\n(38 .nr 80 \n(38
2927.80
2928.rm 80
2929.nr 38 \n(a-
2930.if \n(80<\n(38 .nr 80 \n(38
2931.35
2932.nf
2933.ll \n(34u
2934.nr 38 1n
2935.nr 79 0
2936.nr 40 \n(79+(0*\n(38)
2937.nr 80 +\n(40
2938.nr TW \n(80
2939.if t .if \n(TW>\n(.li .tm Table at line 1882 file Input is too wide - \n(TW units
2940.fc  
2941.nr #T 0-1
2942.nr #a 0-1
2943.eo
2944.de T#
2945.ds #d .d
2946.if \(ts\n(.z\(ts\(ts .ds #d nl
2947.mk ##
2948.nr ## -1v
2949.ls 1
2950.ls
2951..
2952.ec
2953.ta \n(80u
2954.nr 31 \n(.f
2955.nr 35 1m
2956\&\h'|\n(40u'\f3Class/Interface Tags\fP
2957.ne \n(a|u+\n(.Vu
2958.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
2959.ta \n(80u
2960.nr 31 \n(.f
2961.nr 35 1m
2962\&\h'|\n(40u'
2963.mk ##
2964.nr 31 \n(##
2965.sp |\n(##u-1v
2966.nr 37 \n(40u
2967.in +\n(37u
2968.a+
2969.in -\n(37u
2970.mk 32
2971.if \n(32>\n(31 .nr 31 \n(32
2972.sp |\n(31u
2973.fc
2974.nr T. 1
2975.T# 1
2976.35
2977.rm a+
2978.TE
2979.if \n-(b.=0 .nr c. \n(.c-\n(d.-24
2980
2981.LP
2982\f3An example of a class comment:\fP
2983.LP
2984.nf
2985\f3
2986.fl
2987/**
2988.fl
2989 * A class representing a window on the screen.
2990.fl
2991 * For example:
2992.fl
2993 * <pre>
2994.fl
2995 * Window win = new Window(parent);
2996.fl
2997 * win.show();
2998.fl
2999 * </pre>
3000.fl
3001 *
3002.fl
3003 * @author Sami Shaio
3004.fl
3005 * @version 1.13, 06/08/06
3006.fl
3007 * @see java.awt.BaseWindow
3008.fl
3009 * @see java.awt.Button
3010.fl
3011 */
3012.fl
3013class Window extends BaseWindow {
3014.fl
3015 ...
3016.fl
3017}
3018.fl
3019\fP
3020.fi
3021
3022.LP
3023.SS
3024Field Documentation Tags
3025.LP
3026.LP
3027The following are the tags that can appear in the documentation comment for a field.
3028.LP
3029.LP
3030.TS
3031.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
3032.de 35
3033.ps \n(.s
3034.vs \n(.vu
3035.in \n(.iu
3036.if \n(.u .fi
3037.if \n(.j .ad
3038.if \n(.j=0 .na
3039..
3040.nf
3041.nr #~ 0
3042.if n .nr #~ 0.6n
3043.ds #d .d
3044.if \(ts\n(.z\(ts\(ts .ds #d nl
3045.fc
3046.nr 33 \n(.s
3047.rm 80
3048.nr 34 \n(.lu
3049.eo
3050.am 80
3051.br
3052.di a+
3053.35
3054.ft \n(.f
3055.ll \n(34u*1u/2u
3056.if \n(.l<\n(80 .ll \n(80u
3057.in 0
3058\f2@see\fP
3059.br
3060\f2@since\fP
3061.br
3062\f2@deprecated\fP
3063.br
3064\f2@serial\fP
3065.br
3066\f2@serialField\fP
3067.br
3068\f2{@link}\fP
3069.br
3070\f2{@linkplain}\fP
3071.br
3072\f2{@docRoot}\fP
3073.br
3074\f2{@value}\fP
3075.br
3076.di
3077.nr a| \n(dn
3078.nr a- \n(dl
3079..
3080.ec \
3081.35
3082.nf
3083.ll \n(34u
3084.nr 80 0
3085.nr 38 \w\f3Field Tags\fP
3086.if \n(80<\n(38 .nr 80 \n(38
3087.80
3088.rm 80
3089.nr 38 \n(a-
3090.if \n(80<\n(38 .nr 80 \n(38
3091.35
3092.nf
3093.ll \n(34u
3094.nr 38 1n
3095.nr 79 0
3096.nr 40 \n(79+(0*\n(38)
3097.nr 80 +\n(40
3098.nr TW \n(80
3099.if t .if \n(TW>\n(.li .tm Table at line 1957 file Input is too wide - \n(TW units
3100.fc  
3101.nr #T 0-1
3102.nr #a 0-1
3103.eo
3104.de T#
3105.ds #d .d
3106.if \(ts\n(.z\(ts\(ts .ds #d nl
3107.mk ##
3108.nr ## -1v
3109.ls 1
3110.ls
3111..
3112.ec
3113.ta \n(80u
3114.nr 31 \n(.f
3115.nr 35 1m
3116\&\h'|\n(40u'\f3Field Tags\fP
3117.ne \n(a|u+\n(.Vu
3118.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
3119.ta \n(80u
3120.nr 31 \n(.f
3121.nr 35 1m
3122\&\h'|\n(40u'
3123.mk ##
3124.nr 31 \n(##
3125.sp |\n(##u-1v
3126.nr 37 \n(40u
3127.in +\n(37u
3128.a+
3129.in -\n(37u
3130.mk 32
3131.if \n(32>\n(31 .nr 31 \n(32
3132.sp |\n(31u
3133.fc
3134.nr T. 1
3135.T# 1
3136.35
3137.rm a+
3138.TE
3139.if \n-(b.=0 .nr c. \n(.c-\n(d.-24
3140
3141.LP
3142\f3An example of a field comment:\fP
3143.LP
3144.nf
3145\f3
3146.fl
3147 /**
3148.fl
3149 * The X\-coordinate of the component.
3150.fl
3151 *
3152.fl
3153 * @see #getLocation()
3154.fl
3155 */
3156.fl
3157 int x = 1263732;
3158.fl
3159\fP
3160.fi
3161
3162.LP
3163.SS
3164Constructor and Method Documentation Tags
3165.LP
3166.LP
3167The following are the tags that can appear in the documentation comment for a constructor or method, except for \f2@return\fP, which cannot appear in a constructor, and \f2{@inheritDoc}\fP, which has certain restrictions. The \f2@serialData\fP tag can only be used in the doc comment for certain serialization methods.
3168.LP
3169.LP
3170.TS
3171.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
3172.de 35
3173.ps \n(.s
3174.vs \n(.vu
3175.in \n(.iu
3176.if \n(.u .fi
3177.if \n(.j .ad
3178.if \n(.j=0 .na
3179..
3180.nf
3181.nr #~ 0
3182.if n .nr #~ 0.6n
3183.ds #d .d
3184.if \(ts\n(.z\(ts\(ts .ds #d nl
3185.fc
3186.nr 33 \n(.s
3187.rm 80
3188.nr 34 \n(.lu
3189.eo
3190.am 80
3191.br
3192.di a+
3193.35
3194.ft \n(.f
3195.ll \n(34u*1u/2u
3196.if \n(.l<\n(80 .ll \n(80u
3197.in 0
3198\f2@see\fP
3199.br
3200\f2@since\fP
3201.br
3202\f2@deprecated\fP
3203.br
3204\f2@param\fP
3205.br
3206\f2@return\fP
3207.br
3208\f2@throws\fP and \f2@exception\fP
3209.br
3210\f2@serialData\fP
3211.br
3212\f2{@link}\fP
3213.br
3214\f2{@linkplain}\fP
3215.br
3216\f2{@inheritDoc}\fP
3217.br
3218\f2{@docRoot}\fP
3219.br
3220.di
3221.nr a| \n(dn
3222.nr a- \n(dl
3223..
3224.ec \
3225.35
3226.nf
3227.ll \n(34u
3228.nr 80 0
3229.nr 38 \w\f3Method/Constructor Tags\fP
3230.if \n(80<\n(38 .nr 80 \n(38
3231.80
3232.rm 80
3233.nr 38 \n(a-
3234.if \n(80<\n(38 .nr 80 \n(38
3235.35
3236.nf
3237.ll \n(34u
3238.nr 38 1n
3239.nr 79 0
3240.nr 40 \n(79+(0*\n(38)
3241.nr 80 +\n(40
3242.nr TW \n(80
3243.if t .if \n(TW>\n(.li .tm Table at line 2016 file Input is too wide - \n(TW units
3244.fc  
3245.nr #T 0-1
3246.nr #a 0-1
3247.eo
3248.de T#
3249.ds #d .d
3250.if \(ts\n(.z\(ts\(ts .ds #d nl
3251.mk ##
3252.nr ## -1v
3253.ls 1
3254.ls
3255..
3256.ec
3257.ta \n(80u
3258.nr 31 \n(.f
3259.nr 35 1m
3260\&\h'|\n(40u'\f3Method/Constructor Tags\fP
3261.ne \n(a|u+\n(.Vu
3262.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
3263.ta \n(80u
3264.nr 31 \n(.f
3265.nr 35 1m
3266\&\h'|\n(40u'
3267.mk ##
3268.nr 31 \n(##
3269.sp |\n(##u-1v
3270.nr 37 \n(40u
3271.in +\n(37u
3272.a+
3273.in -\n(37u
3274.mk 32
3275.if \n(32>\n(31 .nr 31 \n(32
3276.sp |\n(31u
3277.fc
3278.nr T. 1
3279.T# 1
3280.35
3281.rm a+
3282.TE
3283.if \n-(b.=0 .nr c. \n(.c-\n(d.-28
3284
3285.LP
3286\f3An example of a method doc comment:\fP
3287.LP
3288.nf
3289\f3
3290.fl
3291 /**
3292.fl
3293 * Returns the character at the specified index. An index
3294.fl
3295 * ranges from <code>0</code> to <code>length() \- 1</code>.
3296.fl
3297 *
3298.fl
3299 * @param index the index of the desired character.
3300.fl
3301 * @return the desired character.
3302.fl
3303 * @exception StringIndexOutOfRangeException
3304.fl
3305 * if the index is not in the range <code>0</code>
3306.fl
3307 * to <code>length()\-1</code>.
3308.fl
3309 * @see java.lang.Character#charValue()
3310.fl
3311 */
3312.fl
3313 public char charAt(int index) {
3314.fl
3315 ...
3316.fl
3317 }
3318.fl
3319\fP
3320.fi
3321.RE
3322
3323.LP
3324.SH "OPTIONS"
3325.LP
3326.LP
3327The javadoc tool uses doclets to determine its output. The Javadoc tool uses the default standard doclet unless a custom doclet is specified with the \-doclet option. The Javadoc tool provides a set of command\-line options that can be used with any doclet \-\- these options are described below under the sub\-heading Javadoc Options. The standard doclet provides an additional set of command\-line options that are described below under the sub\-heading Options Provided by the Standard Doclet. All option names are case\-insensitive, though their arguments can be case\-sensitive.
3328.LP
3329.LP
3330The options are:
3331.LP
3332.RS 3
3333
3334.LP
3335.LP
3336.TS
3337.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
3338.de 35
3339.ps \n(.s
3340.vs \n(.vu
3341.in \n(.iu
3342.if \n(.u .fi
3343.if \n(.j .ad
3344.if \n(.j=0 .na
3345..
3346.nf
3347.nr #~ 0
3348.if n .nr #~ 0.6n
3349.ds #d .d
3350.if \(ts\n(.z\(ts\(ts .ds #d nl
3351.fc
3352.nr 33 \n(.s
3353.rm 80 81 82
3354.nr 34 \n(.lu
3355.eo
3356.am 80
3357.br
3358.di a+
3359.35
3360.ft \n(.f
3361.ll \n(34u*1u/4u
3362.if \n(.l<\n(80 .ll \n(80u
3363.in 0
3364\-\f21.1\fP
3365.br
3366\-author
3367.br
3368\-\f2bootclasspath\fP
3369.br
3370\-bottom
3371.br
3372\-\f2breakiterator\fP
3373.br
3374\-charset
3375.br
3376\-\f2classpath\fP
3377.br
3378\-d
3379.br
3380\-docencoding
3381.br
3382\-docfilessubdirs
3383.br
3384\-\f2doclet\fP
3385.br
3386\-\f2docletpath\fP
3387.br
3388\-doctitle
3389.br
3390\-\f2encoding\fP
3391.br
3392\-\f2exclude\fP
3393.br
3394\-excludedocfilessubdir
3395.br
3396\-\f2extdirs\fP
3397.br
3398\-footer
3399.br
3400\-group
3401.br
3402.br
3403.di
3404.nr a| \n(dn
3405.nr a- \n(dl
3406..
3407.ec \
3408.eo
3409.am 81
3410.br
3411.di b+
3412.35
3413.ft \n(.f
3414.ll \n(34u*1u/4u
3415.if \n(.l<\n(81 .ll \n(81u
3416.in 0
3417\-header
3418.br
3419\-\f2help\fP
3420.br
3421\-helpfile
3422.br
3423\-\f2J\fP
3424.br
3425\-keywords
3426.br
3427\-link
3428.br
3429\-linkoffline
3430.br
3431\-linksource
3432.br
3433\-\f2locale\fP
3434.br
3435\-nocomment
3436.br
3437\-nodeprecated
3438.br
3439\-nodeprecatedlist
3440.br
3441\-nohelp
3442.br
3443\-noindex
3444.br
3445\-nonavbar
3446.br
3447\-noqualifier
3448.br
3449\-nosince
3450.br
3451\-notimestamp
3452.br
3453\-notree
3454.br
3455\-\f2overview\fP
3456.br
3457\-\f2package\fP
3458.br
3459.br
3460.di
3461.nr b| \n(dn
3462.nr b- \n(dl
3463..
3464.ec \
3465.eo
3466.am 82
3467.br
3468.di c+
3469.35
3470.ft \n(.f
3471.ll \n(34u*1u/4u
3472.if \n(.l<\n(82 .ll \n(82u
3473.in 0
3474\-\f2private\fP
3475.br
3476\-\f2protected\fP
3477.br
3478\-\f2public\fP
3479.br
3480\-\f2quiet\fP
3481.br
3482\-serialwarn
3483.br
3484\-\f2source\fP
3485.br
3486\-\f2sourcepath\fP
3487.br
3488\-splitindex
3489.br
3490\-stylesheetfile
3491.br
3492\-\f2subpackages\fP
3493.br
3494\-tag
3495.br
3496\-taglet
3497.br
3498\-tagletpath
3499.br
3500\-title
3501.br
3502\-use
3503.br
3504\-\f2verbose\fP
3505.br
3506\-version
3507.br
3508\-windowtitle
3509.br
3510.br
3511.di
3512.nr c| \n(dn
3513.nr c- \n(dl
3514..
3515.ec \
3516.35
3517.nf
3518.ll \n(34u
3519.nr 80 0
3520.80
3521.rm 80
3522.nr 38 \n(a-
3523.if \n(80<\n(38 .nr 80 \n(38
3524.nr 81 0
3525.81
3526.rm 81
3527.nr 38 \n(b-
3528.if \n(81<\n(38 .nr 81 \n(38
3529.nr 82 0
3530.82
3531.rm 82
3532.nr 38 \n(c-
3533.if \n(82<\n(38 .nr 82 \n(38
3534.35
3535.nf
3536.ll \n(34u
3537.nr 38 1n
3538.nr 79 0
3539.nr 40 \n(79+(0*\n(38)
3540.nr 80 +\n(40
3541.nr 41 \n(80+(3*\n(38)
3542.nr 81 +\n(41
3543.nr 42 \n(81+(3*\n(38)
3544.nr 82 +\n(42
3545.nr TW \n(82
3546.if t .if \n(TW>\n(.li .tm Table at line 2192 file Input is too wide - \n(TW units
3547.fc  
3548.nr #T 0-1
3549.nr #a 0-1
3550.eo
3551.de T#
3552.ds #d .d
3553.if \(ts\n(.z\(ts\(ts .ds #d nl
3554.mk ##
3555.nr ## -1v
3556.ls 1
3557.ls
3558..
3559.ec
3560.ne \n(a|u+\n(.Vu
3561.ne \n(b|u+\n(.Vu
3562.ne \n(c|u+\n(.Vu
3563.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
3564.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
3565.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
3566.ta \n(80u \n(81u \n(82u
3567.nr 31 \n(.f
3568.nr 35 1m
3569\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
3570.mk ##
3571.nr 31 \n(##
3572.sp |\n(##u-1v
3573.nr 37 \n(40u
3574.in +\n(37u
3575.a+
3576.in -\n(37u
3577.mk 32
3578.if \n(32>\n(31 .nr 31 \n(32
3579.sp |\n(##u-1v
3580.nr 37 \n(41u
3581.in +\n(37u
3582.b+
3583.in -\n(37u
3584.mk 32
3585.if \n(32>\n(31 .nr 31 \n(32
3586.sp |\n(##u-1v
3587.nr 37 \n(42u
3588.in +\n(37u
3589.c+
3590.in -\n(37u
3591.mk 32
3592.if \n(32>\n(31 .nr 31 \n(32
3593.sp |\n(31u
3594.fc
3595.nr T. 1
3596.T# 1
3597.35
3598.rm a+
3599.rm b+
3600.rm c+
3601.TE
3602.if \n-(b.=0 .nr c. \n(.c-\n(d.-123
3603
3604.LP
3605.RE
3606.LP
3607Options shown in \f2italic\fP are the Javadoc core options, which are provided by the front end of the Javadoc tool and are available to all doclets. The standard doclet itself provides the non\-italic options.
3608.LP
3609.SS
3610Javadoc Options
3611.LP
3612.RS 3
3613.TP 3
3614\-overview \ path/filename
3615Specifies that javadoc should retrieve the text for the overview documentation from the "source" file specified by \f2path/filename\fP and place it on the Overview page (\f2overview\-summary.html\fP). The \f2path/filename\fP is relative to the \f2\-sourcepath\fP.
3616.LP
3617While you can use any name you want for \f2filename\fP and place it anywhere you want for \f2path\fP, a typical thing to do is to name it \f2overview.html\fP and place it in the source tree at the directory that contains the topmost package directories. In this location, no \f2path\fP is needed when documenting packages, since \f2\-sourcepath\fP will point to this file. For example, if the source tree for the \f2java.lang\fP package is \f2/src/classes/java/lang/\fP, then you could place the overview file at \f2/src/classes/overview.html\fP. See Real World Example.
3618.LP
3619For information about the file specified by \f2path/filename\fP, see overview comment file.
3620.LP
3621Note that the overview page is created only if you pass into javadoc two or more package names. For further explanation, see HTML Frames.)
3622.LP
3623The title on the overview page is set by \f2\-doctitle\fP.
3624.LP
3625.TP 3
3626\-public
3627Shows only public classes and members.
3628.LP
3629.TP 3
3630\-protected
3631Shows only protected and public classes and members. This is the default.
3632.LP
3633.TP 3
3634\-package
3635Shows only package, protected, and public classes and members.
3636.LP
3637.TP 3
3638\-private
3639Shows all classes and members.
3640.LP
3641.TP 3
3642\-help
3643Displays the online help, which lists these javadoc and doclet command line options.
3644.LP
3645.TP 3
3646\-doclet\ class
3647Specifies the class file that starts the doclet used in generating the documentation. Use the fully\-qualified name. This doclet defines the content and formats the output. If the \f4\-doclet\fP option is not used, javadoc uses the standard doclet for generating the default HTML format. This class must contain the \f2start(Root)\fP method. The path to this starting class is defined by the \f2\-docletpath\fP option.
3648.LP
3649For example, to call the MIF doclet, use:
3650.nf
3651\f3
3652.fl
3653 \-doclet com.sun.tools.doclets.mif.MIFDoclet
3654.fl
3655\fP
3656.fi
3657.LP
3658For full, working examples of running a particular doclet, see
3659.na
3660\f2Running the MIF Doclet\fP @
3661.fi
3662http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html#runningmifdoclet.
3663.LP
3664.TP 3
3665\-docletpath\ classpathlist
3666Specifies the path to the doclet starting class file (specified with the \f2\-doclet\fP option) and any jar files it depends on. If the starting class file is in a jar file, then this specifies the path to that jar file, as shown in the example below. You can specify an absolute path or a path relative to the current directory. If \f2classpathlist\fP contains multiple paths or jar files, they should be separated with a colon (:) on Solaris and a semi\-colon (;) on Windows. This option is not necessary if the doclet starting class is already in the search path.
3667.LP
3668Example of path to jar file that contains the starting doclet class file. Notice the jar filename is included.
3669.nf
3670\f3
3671.fl
3672 \-docletpath /home/user/mifdoclet/lib/mifdoclet.jar
3673.fl
3674\fP
3675.fi
3676Example of path to starting doclet class file. Notice the class filename is omitted.
3677.nf
3678\f3
3679.fl
3680 \-docletpath /home/user/mifdoclet/classes/com/sun/tools/doclets/mif/
3681.fl
3682\fP
3683.fi
3684For full, working examples of running a particular doclet, see
3685.na
3686\f2Running the MIF Doclet\fP @
3687.fi
3688http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html#runningmifdoclet.
3689.LP
3690.TP 3
3691\-1.1
3692\f2This feature has been removed from Javadoc 1.4. There is no replacement for it. This option created documentation with the appearance and functionality of documentation generated by Javadoc 1.1 (it never supported nested classes). If you need this option, use Javadoc 1.2 or 1.3 instead.\fP
3693.LP
3694.TP 3
3695\-source release
3696Specifies the version of source code accepted. The following values for \f2release\fP are allowed:
3697.LP
3698.TS
3699.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
3700.de 35
3701.ps \n(.s
3702.vs \n(.vu
3703.in \n(.iu
3704.if \n(.u .fi
3705.if \n(.j .ad
3706.if \n(.j=0 .na
3707..
3708.nf
3709.nr #~ 0
3710.if n .nr #~ 0.6n
3711.ds #d .d
3712.if \(ts\n(.z\(ts\(ts .ds #d nl
3713.fc
3714.nr 33 \n(.s
3715.rm 80 81
3716.nr 34 \n(.lu
3717.eo
3718.am 81
3719.br
3720.di a+
3721.35
3722.ft \n(.f
3723.ll \n(34u*1u/3u
3724.if \n(.l<\n(81 .ll \n(81u
3725.in 0
3726javadoc accepts code containing generics and other language features introduced in JDK 1.5. The compiler defaults to the 1.5 behavior if the \f3\-source\fP flag is not used.
3727.br
3728.di
3729.nr a| \n(dn
3730.nr a- \n(dl
3731..
3732.ec \
3733.eo
3734.am 81
3735.br
3736.di b+
3737.35
3738.ft \n(.f
3739.ll \n(34u*1u/3u
3740.if \n(.l<\n(81 .ll \n(81u
3741.in 0
3742javadoc accepts code containing assertions, which were introduced in JDK 1.4.
3743.br
3744.di
3745.nr b| \n(dn
3746.nr b- \n(dl
3747..
3748.ec \
3749.eo
3750.am 81
3751.br
3752.di c+
3753.35
3754.ft \n(.f
3755.ll \n(34u*1u/3u
3756.if \n(.l<\n(81 .ll \n(81u
3757.in 0
3758javadoc does \f2not\fP support assertions, generics, or other language features introduced after JDK 1.3.
3759.br
3760.di
3761.nr c| \n(dn
3762.nr c- \n(dl
3763..
3764.ec \
3765.35
3766.nf
3767.ll \n(34u
3768.nr 80 0
3769.nr 31 0
3770.nr 32 0
3771.nr 38 \w\f31
3772.if \n(31<\n(38 .nr 31 \n(38
3773.nr 38 \w.5\fP
3774.if \n(32<\n(38 .nr 32 \n(38
3775.nr 38 \w\f31
3776.if \n(31<\n(38 .nr 31 \n(38
3777.nr 38 \w.4\fP
3778.if \n(32<\n(38 .nr 32 \n(38
3779.nr 38 \w\f31
3780.if \n(31<\n(38 .nr 31 \n(38
3781.nr 38 \w.3\fP
3782.if \n(32<\n(38 .nr 32 \n(38
3783.80
3784.rm 80
3785.nr 60 \n(31
3786.nr 38 \n(60+\n(32
3787.if \n(38>\n(80 .nr 80 \n(38
3788.if \n(38<\n(80 .nr 60 +(\n(80-\n(38)/2
3789.nr 81 0
3790.81
3791.rm 81
3792.nr 38 \n(a-
3793.if \n(81<\n(38 .nr 81 \n(38
3794.nr 38 \n(b-
3795.if \n(81<\n(38 .nr 81 \n(38
3796.nr 38 \n(c-
3797.if \n(81<\n(38 .nr 81 \n(38
3798.35
3799.nf
3800.ll \n(34u
3801.nr 38 1n
3802.nr 79 0
3803.nr 40 \n(79+(0*\n(38)
3804.nr 80 +\n(40
3805.nr 60 +\n(40
3806.nr 41 \n(80+(3*\n(38)
3807.nr 81 +\n(41
3808.nr TW \n(81
3809.if t .if \n(TW>\n(.li .tm Table at line 2302 file Input is too wide - \n(TW units
3810.fc  
3811.nr #T 0-1
3812.nr #a 0-1
3813.eo
3814.de T#
3815.ds #d .d
3816.if \(ts\n(.z\(ts\(ts .ds #d nl
3817.mk ##
3818.nr ## -1v
3819.ls 1
3820.ls
3821..
3822.ec
3823.ne \n(a|u+\n(.Vu
3824.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
3825.ta \n(60u \n(80u \n(81u
3826.nr 31 \n(.f
3827.nr 35 1m
3828\&\h'|\n(40u'\f31.5\fP\h'|\n(41u'
3829.mk ##
3830.nr 31 \n(##
3831.sp |\n(##u-1v
3832.nr 37 \n(41u
3833.in +\n(37u
3834.a+
3835.in -\n(37u
3836.mk 32
3837.if \n(32>\n(31 .nr 31 \n(32
3838.sp |\n(31u
3839.ne \n(b|u+\n(.Vu
3840.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
3841.ta \n(60u \n(80u \n(81u
3842.nr 31 \n(.f
3843.nr 35 1m
3844\&\h'|\n(40u'\f31.4\fP\h'|\n(41u'
3845.mk ##
3846.nr 31 \n(##
3847.sp |\n(##u-1v
3848.nr 37 \n(41u
3849.in +\n(37u
3850.b+
3851.in -\n(37u
3852.mk 32
3853.if \n(32>\n(31 .nr 31 \n(32
3854.sp |\n(31u
3855.ne \n(c|u+\n(.Vu
3856.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
3857.ta \n(60u \n(80u \n(81u
3858.nr 31 \n(.f
3859.nr 35 1m
3860\&\h'|\n(40u'\f31.3\fP\h'|\n(41u'
3861.mk ##
3862.nr 31 \n(##
3863.sp |\n(##u-1v
3864.nr 37 \n(41u
3865.in +\n(37u
3866.c+
3867.in -\n(37u
3868.mk 32
3869.if \n(32>\n(31 .nr 31 \n(32
3870.sp |\n(31u
3871.fc
3872.nr T. 1
3873.T# 1
3874.35
3875.rm a+
3876.rm b+
3877.rm c+
3878.TE
3879.if \n-(b.=0 .nr c. \n(.c-\n(d.-14
3880.LP
3881Use the value of \f2release\fP corresponding to that used when compiling the code with javac.
3882.LP
3883.TP 3
3884\-sourcepath\ sourcepathlist
3885Specifies the search paths for finding source files (\f2.java\fP) when passing package names or \f2\-subpackages\fP into the \f2javadoc\fP command. The \f2sourcepathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths. Note that this option is not only used to locate the source files being documented, but also to find source files that are not being documented but whose comments are inherited by the source files being documented.
3886.LP
3887Note that you can use the \f2\-sourcepath\fP option only when passing package names into the javadoc command \-\- it will not locate \f2.java\fP files passed into the \f2javadoc\fP command. (To locate \f2.java\fP files, cd to that directory or include the path ahead of each file, as shown at Documenting One or More Classes.) If \f2\-sourcepath\fP is omitted, javadoc uses the class path to find the source files (see \-classpath). Therefore, the default \-sourcepath is the value of class path. If \-classpath is omitted and you are passing package names into javadoc, it looks in the current directory (and subdirectories) for the source files.
3888.LP
3889Set \f2sourcepathlist\fP to the root directory of the source tree for the package you are documenting. For example, suppose you want to document a package called \f2com.mypackage\fP whose source files are located at:
3890.nf
3891\f3
3892.fl
3893 /home/user/src/com/mypackage/*.java
3894.fl
3895\fP
3896.fi
3897In this case you would specify the \f2sourcepath\fP to \f2/home/user/src\fP, the directory that contains \f2com/mypackage\fP, and then supply the package name \f2com.mypackage\fP:
3898.nf
3899\f3
3900.fl
3901 % \fP\f3javadoc \-sourcepath /home/user/src/ com.mypackage\fP
3902.fl
3903.fi
3904This is easy to remember by noticing that if you concatenate the value of sourcepath and the package name together and change the dot to a slash "/", you end up with the full path to the package: \f2/home/user/src/com/mypackage\fP.
3905.LP
3906To point to two source paths:
3907.nf
3908\f3
3909.fl
3910 % \fP\f3javadoc \-sourcepath /home/user1/src:/home/user2/src com.mypackage\fP
3911.fl
3912.fi
3913.LP
3914.TP 3
3915\-classpath\ classpathlist
3916Specifies the paths where javadoc will look for referenced classes (\f2.class\fP files) \-\- these are the documented classes plus any classes referenced by those classes. The \f2classpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths. Follow the instructions in class path documentation for specifying \f2classpathlist\fP.
3917.LP
3918If \f2\-sourcepath\fP is omitted, the Javadoc tool uses \f2\-classpath\fP to find the source files as well as class files (for backward compatibility). Therefore, if you want to search for source and class files in separate paths, use both \f2\-sourcepath\fP and \f2\-classpath\fP.
3919.LP
3920For example, if you want to document \f2com.mypackage\fP, whose source files reside in the directory \f2/home/user/src/com/mypackage\fP, and if this package relies on a library in \f2/home/user/lib\fP, you would specify:
3921.nf
3922\f3
3923.fl
3924 % \fP\f3javadoc \-classpath /home/user/lib \-sourcepath /home/user/src com.mypackage\fP
3925.fl
3926.fi
3927As with other tools, if you do not specify \f2\-classpath\fP, the Javadoc tool uses the CLASSPATH environment variable, if it is set. If both are not set, the Javadoc tool searches for classes from the current directory.
3928.LP
3929For an in\-depth description of how the Javadoc tool uses \f2\-classpath\fP to find user classes as it relates to extension classes and bootstrap classes, see How Classes Are Found.
3930.LP
3931As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a java program cannot tell the difference between the two invocations).
3932.br
3933.br
3934For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
3935.LP
3936.TP 3
3937\-subpackages\ \ package1:package2:...
3938Generates documentation from source files in the specified packages and recursively in their subpackages. This option is useful when adding new subpackages to the source code, as they are automatically included. Each \f2package\fP argument is any top\-level subpackage (such as \f2java\fP) or fully qualified package (such as \f2javax.swing\fP) that does not need to contain source files. Arguments are separated by colons (on all operating systmes). Wildcards are not needed or allowed. Use \f2\-sourcepath\fP to specify where to find the packages. This option is smart about not processing source files that are in the source tree but do not belong to the packages, as described at processing of source files.
3939.LP
3940For example:
3941.nf
3942\f3
3943.fl
3944 % \fP\f3javadoc \-d docs \-sourcepath /home/user/src \-subpackages java:javax.swing\fP
3945.fl
3946.fi
3947This command generates documentation for packages named "java" and "javax.swing" and all their subpackages.
3948.LP
3949You can use \f2\-subpackages\fP in conjunction with \f2\-exclude\fP to exclude specific packages.
3950.LP
3951.TP 3
3952\-exclude\ \ packagename1:packagename2:...
3953Unconditionally excludes the specified packages and their subpackages from the list formed by \f2\-subpackages\fP. It excludes those packages even if they would otherwise be included by some previous or later \f2\-subpackages\fP option. For example:
3954.nf
3955\f3
3956.fl
3957 % \fP\f3javadoc \-sourcepath /home/user/src \-subpackages java \-exclude java.net:java.lang\fP
3958.fl
3959.fi
3960would include \f2java.io\fP, \f2java.util\fP, and \f2java.math\fP (among others), but would exclude packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
3961.LP
3962.TP 3
3963\-bootclasspath\ classpathlist
3964Specifies the paths where the boot classes reside. These are nominally the Java platform classes. The bootclasspath is part of the search path the Javadoc tool will use to look up source and class files. See How Classes Are Found. for more details. Separate directories in \f2classpathlist\fP with colons (:).
3965.LP
3966.TP 3
3967\-extdirs\ dirlist
3968Specifies the directories where extension classes reside. These are any classes that use the Java Extension mechanism. The extdirs is part of the search path the Javadoc tool will use to look up source and class files. See \f2\-classpath\fP (above) for more details. Separate directories in \f2dirlist\fP with colons (:).
3969.LP
3970.TP 3
3971\-verbose
3972Provides more detailed messages while javadoc is running. Without the verbose option, messages appear for loading the source files, generating the documentation (one message per source file), and sorting. The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
3973.LP
3974.TP 3
3975\-quiet
3976Shuts off non\-error and non\-warning messages, leaving only the warnings and errors appear, making them easier to view. Also suppresses the version string.
3977.LP
3978.TP 3
3979\-breakiterator\
3980Uses the internationalized sentence boundary of \f2java.text.BreakIterator\fP to determine the end of the first sentence for English (all other locales already use \f2BreakIterator\fP), rather than an English language, locale\-specific algorithm. By \f2first sentence\fP, we mean the first sentence in the main description of a package, class or member. This sentence is copied to the package, class or member summary, and to the alphabetic index.
3981.LP
3982From JDK 1.2 forward, the BreakIterator class is already used to determine the end of sentence for all languages but English. Therefore, the \f2\-breakiterator\fP option has no effect except for English from 1.2 forward. English has its own default algorithm:
3983.RS 3
3984.TP 2
3985o
3986English default sentence\-break algorithm \- Stops at a period followed by a space or a HTML block tag, such as \f2<P>\fP.
3987.TP 2
3988o
3989Breakiterator sentence\-break algorithm \- In general, stops at a period, question mark or exclamation mark followed by a space if the next word starts with a capital letter. This is meant to handle most abbreviations (such as "The serial no. is valid", but won't handle "Mr. Smith"). Doesn't stop at HTML tags or sentences that begin with numbers or symbols. Stops at the last period in "../filename", even if embedded in an HTML tag.
3990.RE
3991.RS 3
3992
3993.LP
3994.LP
3995NOTE: We have removed from 1.5.0 the breakiterator warning messages that were in 1.4.x and have left the default sentence\-break algorithm unchanged. That is, the \-breakiterator option is not the default in 1.5.0, nor do we expect it to become the default. This is a reversal from our former intention that the default would change in the "next major release" (1.5.0). This means if you have not modified your source code to eliminate the breakiterator warnings in 1.4.x, then you don't have to do anything, and the warnings go away starting with 1.5.0. The reason for this reversal is because any benefit to having breakiterator become the default would be outweighed by the incompatible source change it would require. We regret any extra work and confusion this has caused.
3996.LP
3997.RE
3998.TP 3
3999\-locale\ language_country_variant
4000.RS 3
4001.LP
4002\f3Important\fP \- The \f2\-locale\fP option must be placed \f2ahead\fP (to the left) of any options provided by the standard doclet or any other doclet. Otherwise, the navigation bars will appear in English. This is the only command\-line option that is order\-dependent.
4003.LP
4004.RE
4005.LP
4006Specifies the locale that javadoc uses when generating documentation. The argument is the name of the locale, as described in java.util.Locale documentation, such as \f2en_US\fP (English, United States) or \f2en_US_WIN\fP (Windows variant).
4007.LP
4008Specifying a locale causes javadoc to choose the resource files of that locale for messages (strings in the navigation bar, headings for lists and tables, help file contents, comments in stylesheet.css, and so forth). It also specifies the sorting order for lists sorted alphabetically, and the sentence separator to determine the end of the first sentence. It does not determine the locale of the doc comment text specified in the source files of the documented classes.
4009.LP
4010.TP 3
4011\-encoding\ name
4012Specifies the encoding name of the source files, such as \f2EUCJIS/SJIS\fP. If this option is not specified, the platform default converter is used.
4013.LP
4014Also see \-docencoding and \-charset.
4015.LP
4016.TP 3
4017\-Jflag
4018Passes \f2flag\fP directly to the runtime system java that runs javadoc. Notice there must be no space between the \f2J\fP and the \f2flag\fP. For example, if you need to ensure that the system sets aside 32 megabytes of memory in which to process the generated documentation, then you would call the \f2\-Xmx\fP option of java as follows (\f2\-Xms\fP is optional, as it only sets the size of initial memory, which is useful if you know the minimum amount of memory required):
4019.nf
4020\f3
4021.fl
4022 % \fP\f3javadoc \-J\-Xmx32m \-J\-Xms32m\fP \f3com.mypackage\fP
4023.fl
4024.fi
4025To tell what version of javadoc you are using, call the "\f2\-version\fP" option of java:
4026.nf
4027\f3
4028.fl
4029 % \fP\f3javadoc \-J\-version\fP
4030.fl
4031 java version "1.2"
4032.fl
4033 Classic VM (build JDK\-1.2\-V, green threads, sunwjit)
4034.fl
4035.fi
4036(The version number of the standard doclet appears in its output stream.)
4037.RE
4038.SS
4039Options Provided by the Standard Doclet
4040.LP
4041.RS 3
4042.TP 3
4043\-d\ directory
4044Specifies the destination directory where javadoc saves the generated HTML files. (The "d" means "destination.") Omitting this option causes the files to be saved to the current directory. The value \f2directory\fP can be absolute, or relative to the current working directory. As of 1.4, the destination directory is automatically created when javadoc is run.
4045.LP
4046For example, the following generates the documentation for the package \f2com.mypackage\fP and saves the results in the \f2/home/user/doc/\fP directory:
4047.nf
4048\f3
4049.fl
4050 % \fP\f3javadoc \-d /home/user/doc com.mypackage\fP
4051.fl
4052.fi
4053.LP
4054.TP 3
4055\-use
4056Includes one "Use" page for each documented class and package. The page describes what packages, classes, methods, constructors and fields use any API of the given class or package. Given class C, things that use class C would include subclasses of C, fields declared as C, methods that return C, and methods and constructors with parameters of type C.
4057.LP
4058For example, let's look at what might appear on the "Use" page for String. The \f2getName()\fP method in the \f2java.awt.Font\fP class returns type \f2String\fP. Therefore, \f2getName()\fP uses \f2String\fP, and you will find that method on the "Use" page for \f2String\fP.
4059.LP
4060Note that this documents only uses of the API, not the implementation. If a method uses \f2String\fP in its implementation but does not take a string as an argument or return a string, that is not considered a "use" of \f2String\fP.
4061.LP
4062You can access the generated "Use" page by first going to the class or package, then clicking on the "Use" link in the navigation bar.
4063.TP 3
4064\-version
4065Includes the @version text in the generated docs. This text is omitted by default. To tell what version of the Javadoc tool you are using, use the \f2\-J\-version\fP option.
4066.LP
4067.TP 3
4068\-author
4069Includes the @author text in the generated docs.
4070.LP
4071.TP 3
4072\-splitindex
4073Splits the index file into multiple files, alphabetically, one file per letter, plus a file for any index entries that start with non\-alphabetical characters.
4074.LP
4075.TP 3
4076\-windowtitle\ title
4077Specifies the title to be placed in the HTML <title> tag. This appears in the window title and in any browser bookmarks (favorite places) that someone creates for this page. This title should not contain any HTML tags, as the browser will not properly interpret them. Any internal quotation marks within \f2title\fP may have to be escaped. If \-windowtitle is omitted, the Javadoc tool uses the value of \-doctitle for this option.
4078.nf
4079\f3
4080.fl
4081 % \fP\f3javadoc \-windowtitle "Java 2 Platform" com.mypackage\fP
4082.fl
4083.fi
4084.TP 3
4085\-doctitle\ title
4086Specifies the title to be placed near the top of the overview summary file. The title will be placed as a centered, level\-one heading directly beneath the upper navigation bar. The \f2title\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2title\fP may have to be escaped.
4087.nf
4088\f3
4089.fl
4090 % \fP\f3javadoc \-doctitle "Java<sup><font size=\\"\-2\\">TM</font></sup>" com.mypackage\fP
4091.fl
4092.fi
4093.TP 3
4094\-title\ title
4095\f3This option no longer exists.\fP It existed only in Beta versions of Javadoc 1.2. It has been renamed to \f2\-doctitle\fP. This option is being renamed to make it clear that it defines the document title rather than the window title.
4096.LP
4097.TP 3
4098\-header\ header
4099Specifies the header text to be placed at the top of each output file. The header will be placed to the right of the upper navigation bar. \f2header\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2header\fP may have to be escaped.
4100.nf
4101\f3
4102.fl
4103 % \fP\f3javadoc \-header "<b>Java 2 Platform </b><br>v1.4" com.mypackage\fP
4104.fl
4105.fi
4106.LP
4107.TP 3
4108\-footer\ footer
4109Specifies the footer text to be placed at the bottom of each output file. The footer will be placed to the right of the lower navigation bar. \f2footer\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2footer\fP may have to be escaped.
4110.LP
4111.TP 3
4112\-bottom\ text
4113Specifies the text to be placed at the bottom of each output file. The text will be placed at the bottom of the page, below the lower navigation bar. The \f2text\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2text\fP may have to be escaped.
4114.LP
4115.TP 3
4116\-link\ extdocURL
4117Creates links to existing javadoc\-generated documentation of external referenced classes. It takes one argument:
4118.LP
4119.RS 3
4120.TP 2
4121o
4122\f4extdocURL\fP is the absolute or relative URL of the directory containing the external javadoc\-generated documentation you want to link to. Examples are shown below. The package\-list file must be found in this directory (otherwise, use \f2\-linkoffline\fP). The Javadoc tool reads the package names from the \f2package\-list\fP file and then links to those packages at that URL. When the Javadoc tool is run, the \f2extdocURL\fP value is copied literally into the \f2<A HREF>\fP links that are created. Therefore, \f2extdocURL\fP must be the URL to the \f2directory\fP, not to a file.
4123.LP
4124You can use an absolute link for \f2extdocURL\fP to enable your docs to link to a document on any website, or can use a relative link to link only to a relative location. If relative, the value you pass in should be the relative path from the destination directory (specified with \f2\-d\fP) to the directory containing the packages being linked to.
4125.LP
4126When specifying an absolute link you normally use an \f2http:\fP link. However, if you want to link to a file system that has no web server, you can use a \f2file:\fP link \-\- however, do this only if everyone wanting to access the generated documentation shares the same file system.
4127.LP
4128In all cases, and on all operating systems, you should use a forward slash as the separator, whether the URL is absolute or relative, and "http:" or "file:" based (as specified in the
4129.na
4130\f2URL Memo\fP @
4131.fi
4132http://www.ietf.org/rfc/rfc1738.txt).
4133.RS 3
4134.TP 3
4135Absolute http: based link:
4136\f2\-link http://<host>/<directory>/<directory>/.../<name>\fP
4137.TP 3
4138Absolute file: based link:
4139\f2\-link file://<host>/<directory>/<directory>/.../<name>\fP
4140.TP 3
4141Relative link:
4142\f2\-link <directory>/<directory>/.../<name>\fP
4143.RE
4144.RE
4145.LP
4146You can specify multiple \f2\-link\fP options in a given javadoc run to link to multiple documents. \f3Choosing between \-linkoffline and \-link\fP:
4147.br
4148Use \f2\-link\fP:
4149.RS 3
4150.TP 2
4151o
4152when using a relative path to the external API document, or
4153.TP 2
4154o
4155when using an absolute URL to the external API document, if your shell allows a program to open a connection to that URL for reading.
4156.RE
4157Use \f2\-linkoffline\fP:
4158.RS 3
4159.TP 2
4160o
4161when using an absolute URL to the external API document, if your shell \f2does not allow\fP a program to open a connection to that URL for reading. This can occur if you are behind a firewall and the document you want to link to is on the other side.
4162.RE
4163.LP
4164\f3Example using absolute links to the external docs\fP \- Let's say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java 2 Platform packages at
4165.na
4166\f2http://java.sun.com/j2se/1.5.0/docs/api\fP @
4167.fi
4168http://java.sun.com/j2se/1.5.0/docs/api, The following command generates documentation for the package \f2com.mypackage\fP with links to the Java 2 Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other options, such as \f2\-sourcepath\fP and \f2\-d\fP, are not shown.)
4169.nf
4170\f3
4171.fl
4172 % \fP\f3javadoc \-link http://java.sun.com/j2se/1.5.0/docs/api com.mypackage\fP
4173.fl
4174.fi
4175\f3Example using relative links to the external docs\fP \- Let's say you have two packages whose docs are generated in different runs of the Javadoc tool, and those docs are separated by a relative path. In this example, the packages are \f2com.apipackage\fP, an API, and \f2com.spipackage\fP, an SPI (Service Provide Interface). You want the documentation to reside in \f2docs/api/com/apipackage\fP and \f2docs/spi/com/spipackage\fP. Assuming the API package documentation is already generated, and that \f2docs\fP is the current directory, you would document the SPI package with links to the API documentation by running:
4176.nf
4177\f3
4178.fl
4179 % \fP\f3javadoc \-d ./spi \-link ../api com.spipackage\fP
4180.fl
4181.fi
4182.LP
4183Notice the \f2\-link\fP argument is relative to the destination directory (\f2docs/spi\fP).
4184.LP
4185\f3Details\fP \- The \f2\-link\fP option enables you to link to classes referenced to by your code but \f2not\fP documented in the current javadoc run. For these links to go to valid pages, you must know where those HTML pages are located, and specify that location with \f2extdocURL\fP. This allows, for instance, third party documentation to link to \f2java.*\fP documentation on \f2http://java.sun.com\fP.
4186.LP
4187Omit the \f2\-link\fP option for javadoc to create links only to API within the documentation it is generating in the current run. (Without the \f2\-link\fP option, the Javadoc tool does not create links to documentation for external references, because it does not know if or where that documentation exists.)
4188.LP
4189This option can create links in several places in the generated documentation.
4190.LP
4191Another use is for cross\-links between sets of packages: Execute javadoc on one set of packages, then run javadoc again on another set of packages, creating links both ways between both sets.
4192.LP
4193\f3How a Class Must be Referenced\fP \- For a link to an external referenced class to actually appear (and not just its text label), the class must be referenced in the following way. It is not sufficient for it to be referenced in the body of a method. It must be referenced in either an \f2import\fP statement or in a declaration. Here are examples of how the class \f2java.io.File\fP can be referenced:
4194.RS 3
4195.TP 2
4196o
4197In any kind of \f2import\fP statement: by wildcard import, import explicitly by name, or automatically import for \f2java.lang.*\fP. For example, this would suffice:
4198.br
4199\f2import java.io.*;\fP
4200.br
4201In 1.3.x and 1.2.x, only an explicit import by name works \-\- a wildcard import statement does not work, nor does the automatic import \f2java.lang.*\fP.
4202.TP 2
4203o
4204In a declaration:
4205.br
4206\f2void foo(File f) {}\fP
4207.br
4208The reference and be in the return type or parameter type of a method, constructor, field, class or interface, or in an \f2implements\fP, \f2extends\fP or \f2throws\fP statement.
4209.RE
4210.LP
4211An important corollary is that when you use the \f2\-link\fP option, there may be many links that unintentionally do not appear due to this constraint. (The text would appear without a hypertext link.) You can detect these by the warnings they emit. The most innocuous way to properly reference a class and thereby add the link would be to import that class, as shown above.
4212.LP
4213\f3Package List\fP \- The \f2\-link\fP option requires that a file named \f2package\-list\fP, which is generated by the Javadoc tool, exist at the URL you specify with \f2\-link\fP. The \f2package\-list\fP file is a simple text file that lists the names of packages documented at that location. In the earlier example, the Javadoc tool looks for a file named \f2package\-list\fP at the given URL, reads in the package names and then links to those packages at that URL.
4214.LP
4215For example, the package list for the Java 2 Platform 5.0 API is located at
4216.na
4217\f2http://java.sun.com/j2se/1.5.0/docs/api/package\-list\fP @
4218.fi
4219http://java.sun.com/j2se/1.5.0/docs/api/package\-list. and starts out as follows:
4220.nf
4221\f3
4222.fl
4223 java.applet
4224.fl
4225 java.awt
4226.fl
4227 java.awt.color
4228.fl
4229 java.awt.datatransfer
4230.fl
4231 java.awt.dnd
4232.fl
4233 java.awt.event
4234.fl
4235 java.awt.font
4236.fl
4237 etc.
4238.fl
4239\fP
4240.fi
4241.LP
4242When javadoc is run without the \f2\-link\fP option, when it encounters a name that belongs to an external referenced class, it prints the name with no link. However, when the \f2\-link\fP option is used, the Javadoc tool searches the \f2package\-list\fP file at the specified \f2extdocURL\fP location for that package name. If it finds the package name, it prefixes the name with \f2extdocURL\fP.
4243.LP
4244In order for there to be no broken links, all of the documentation for the external references must exist at the specified URLs. The Javadoc tool will not check that these pages exist \-\- only that the package\-list exists.
4245.LP
4246\f3Multiple Links\fP \- You can supply multiple \f2\-link\fP options to link to any number of external generated documents. \ Javadoc 1.2 has a known bug which prevents you from supplying more than one \f2\-link\fP command. This was fixed in 1.2.2.
4247.LP
4248Specify a different link option for each external document to link to:
4249.LP
4250\ \ \f2% \fP\f4javadoc \-link\fP \f2extdocURL1\fP \f4\-link\fP \f2extdocURL2\fP \f2... \fP\f4\-link\fP \f2extdocURLn\fP \f4com.mypackage\fP
4251.LP
4252where \f2extdocURL1\fP,\ \f2extdocURL2\fP,\ ... \f2extdocURLn\fP point respectively to the roots of external documents, each of which contains a file named \f2package\-list\fP.
4253.LP
4254\f3Cross\-links\fP \- Note that "bootstrapping" may be required when cross\-linking two or more documents that have not previously been generated. In other words, if \f2package\-list\fP does not exist for either document, when you run the Javadoc tool on the first document, the \f2package\-list\fP will not yet exist for the second document. Therefore, to create the external links, you must re\-generate the first document after generating the second document.
4255.LP
4256In this case, the purpose of first generating a document is to create its \f2package\-list\fP (or you can create it by hand it if you're certain of the package names). Then generate the second document with its external links. The Javadoc tool prints a warning if a needed external \f2package\-list\fP file does not exist.
4257.LP
4258.TP 3
4259\-linkoffline\ extdocURL\ packagelistLoc
4260This option is a variation of \f2\-link\fP; they both create links to javadoc\-generated documentation for external referenced classes. Use the \f2\-linkoffline\fP option when linking to a document on the web when the Javadoc tool itself is "offline" \-\- that is, it cannot access the document through a web connection.
4261.LP
4262More specifically, use \f2\-linkoffline\fP if the external document's \f2package\-list\fP file is not accessible or does not exist at the \f2extdocURL\fP location but does exist at a different location, which can be specified by \f2packageListLoc\fP (typically local). Thus, if \f2extdocURL\fP is accessible only on the World Wide Web, \f2\-linkoffline\fP removes the constraint that the Javadoc tool have a web connection when generating the documentation.
4263.LP
4264Another use is as a "hack" to update docs: After you have run javadoc on a full set of packages, then you can run javadoc again on onlya smaller set of changed packages, so that the updated files can be inserted back into the original set. Examples are given below.
4265.LP
4266The \f2\-linkoffline\fP option takes two arguments \-\- the first for the string to be embedded in the \f2<a href>\fP links, the second telling it where to find \f2package\-list\fP:
4267.RS 3
4268.TP 2
4269o
4270\f4extdocURL\fP is the absolute or relative URL of the directory containing the external javadoc\-generated documentation you want to link to. If relative, the value should be the relative path from the destination directory (specified with \f2\-d\fP) to the root of the packages being linked to. For more details, see \f2extdocURL\fP in the \f2\-link\fP option.
4271.TP 2
4272o
4273\f4packagelistLoc\fP is the path or URL to the directory containing the \f2package\-list\fP file for the external documentation. This can be a URL (http: or file:) or file path, and can be absolute or relative. If relative, make it relative to the \f2current\fP directory from where javadoc was run. Do not include the \f2package\-list\fP filename.
4274.RE
4275.LP
4276You can specify multiple \f2\-linkoffline\fP options in a given javadoc run. (Prior to 1.2.2, it could be specified only once.)
4277.LP
4278\f3Example using absolute links to the external docs\fP \- Let's say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java 2 Platform packages at \f2http://java.sun.com/j2se/1.5.0/docs/api\fP, but your shell does not have web access. You could open the \f2package\-list\fP file in a browser at
4279.na
4280\f2http://java.sun.com/j2se/1.5.0/docs/api/package\-list\fP @
4281.fi
4282http://java.sun.com/j2se/1.5.0/docs/api/package\-list, save it to a local directory, and point to this local copy with the second argument, \f2packagelistLoc\fP. In this example, the package list file has been saved to the current directory "\f2.\fP" . The following command generates documentation for the package \f2com.mypackage\fP with links to the Java 2 Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other necessary options, such as \f2\-sourcepath\fP, are not shown.)
4283.nf
4284\f3
4285.fl
4286% \fP\f3javadoc \-linkoffline http://java.sun.com/j2se/1.5.0/docs/api . com.mypackage\fP
4287.fl
4288.fi
4289.LP
4290\f3Example using relative links to the external docs\fP \- It's not very common to use \f2\-linkoffline\fP with relative paths, for the simple reason that \f2\-link\fP usually suffices. When using \f2\-linkoffline\fP, the \f2package\-list\fP file is generally local, and when using relative links, the file you are linking to is also generally local. So it is usually unnecessary to give a different path for the two arguments to \f2\-linkoffline\fP. When the two arguments are identical, you can use \f2\-link\fP. See the \f2\-link\fP relative example.
4291.LP
4292\f3Manually Creating a \fP\f4package\-list\fP\f3 File\fP \- If a \f2package\-list\fP file does not yet exist, but you know what package names your document will link to, you can create your own copy of this file by hand and specify its path with \f2packagelistLoc\fP. An example would be the previous case where the package list for \f2com.spipackage\fP did not exist when \f2com.apipackage\fP was first generated. This technique is useful when you need to generate documentation that links to new external documentation whose package names you know, but which is not yet published. This is also a way of creating \f2package\-list\fP files for packages generated with Javadoc 1.0 or 1.1, where \f2package\-list\fP files were not generated. Likewise, two companies can share their unpublished \f2package\-list\fP files, enabling them to release their cross\-linked documentation simultaneously.
4293.LP
4294\f3Linking to Multiple Documents\fP \- You can include \f2\-linkoffline\fP once for each generated document you want to refer to (each option is shown on a separate line for clarity):
4295.LP
4296\f2% \fP\f4javadoc \-linkoffline\fP \f2extdocURL1\fP \f2packagelistLoc1\fP \f2\\\fP
4297.br
4298\f2\ \ \ \ \ \ \ \ \ \ \fP\f4\-linkoffline\fP \f2extdocURL2\fP \f2packagelistLoc2\fP \f2\\\fP
4299.br
4300\f2\ \ \ \ \ \ \ \ \ \ ...\fP
4301.LP
4302\f3Updating docs\fP \- Another use for \f2\-linkoffline\fP option is useful if your project has dozens or hundreds of packages, if you have already run javadoc on the entire tree, and now, in a separate run, you want to quickly make some small changes and re\-run javadoc on just a small portion of the source tree. This is somewhat of a hack in that it works properly only if your changes are only to doc comments and not to declarations. If you were to add, remove or change any declarations from the source code, then broken links could show up in the index, package tree, inherited member lists, use page, and other places.
4303.LP
4304First, you create a new destination directory (call it \f2update\fP) for this new small run. Let's say the original destination directory was named \f2html\fP. In the simplest example, cd to the parent of \f2html\fP. Set the first argument of \f2\-linkoffline\fP to the current directory "." and set the second argument to the relative path to \f2html\fP, where it can find \f2package\-list\fP, and pass in only the package names of the packages you want to update:
4305.nf
4306\f3
4307.fl
4308 % \fP\f3javadoc \-d update \-linkoffline . html com.mypackage\fP
4309.fl
4310.fi
4311When the Javadoc tool is done, copy these generated class pages in \f2update/com/package\fP (not the overview or index), over the original files in \f2html/com/package\fP.
4312.LP
4313.TP 3
4314\-linksource\
4315Creates an HTML version of each source file (with line numbers) and adds links to them from the standard HTML documentation. Links are created for classes, interfaces, constructors, methods and fields whose declarations are in a source file. Otherwise, links are not created, such as for default constructors and generated classes.
4316.LP
4317\f3This option exposes \fP\f4all\fP\f3 private implementation details in the included source files, including private classes, private fields, and the bodies of private methods, \fP\f4regardless of the \fP\f4\-public\fP\f3, \fP\f4\-package\fP\f3, \fP\f4\-protected\fP\f3 and \fP\f4\-private\fP\f3 options.\fP Unless you also use the \f2\-private\fP option, not all private classes or interfaces will necessarily be accessible via links.
4318.LP
4319Each link appears on the name of the identifier in its declaration. For example, the link to the source code of the \f2Button\fP class would be on the word "Button":
4320.nf
4321\f3
4322.fl
4323 public class Button
4324.fl
4325 extends Component
4326.fl
4327 implements Accessible
4328.fl
4329\fP
4330.fi
4331and the link to the source code of the \f2getLabel()\fP method in the Button class would be on the word "getLabel":
4332.nf
4333\f3
4334.fl
4335 public String getLabel()
4336.fl
4337\fP
4338.fi
4339.LP
4340.TP 3
4341\-group\ groupheading\ packagepattern:packagepattern:...
4342Separates packages on the overview page into whatever groups you specify, one group per table. You specify each group with a different \f2\-group\fP option. The groups appear on the page in the order specified on the command line; packages are alphabetized within a group. For a given \f2\-group\fP option, the packages matching the list of \f2packagepattern\fP expressions appear in a table with the heading \f2groupheading\fP.
4343.RS 3
4344.TP 2
4345o
4346\f4groupheading\fP can be any text, and can include white space. This text is placed in the table heading for the group.
4347.TP 2
4348o
4349\f4packagepattern\fP can be any package name, or can be the start of any package name followed by an asterisk (\f2*\fP). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed. Multiple patterns can be included in a group by separating them with colons (\f2:\fP).
4350.RE
4351.RS 3
4352
4353.LP
4354.LP
4355\f3NOTE: If using an asterisk in a pattern or pattern list, the pattern list must be inside quotes, such as \fP\f4"java.lang*:java.util"\fP
4356.LP
4357.RE
4358.LP
4359If you do not supply any \f2\-group\fP option, all packages are placed in one group with the heading "Packages". If the all groups do not include all documented packages, any leftover packages appear in a separate group with the heading "Other Packages".
4360.LP
4361For example, the following option separates the four documented packages into core, extension and other packages. Notice the trailing "dot" does not appear in "java.lang*" \-\- including the dot, such as "java.lang.*" would omit the java.lang package.
4362.nf
4363\f3
4364.fl
4365 % \fP\f3javadoc \-group "Core Packages" "java.lang*:java.util"
4366.fl
4367 \-group "Extension Packages" "javax.*"
4368.fl
4369 java.lang java.lang.reflect java.util javax.servlet java.new\fP
4370.fl
4371.fi
4372This results in the groupings:
4373.RS 3
4374.RS 3
4375.TP 3
4376Core Packages
4377\f2java.lang\fP
4378\f2java.lang.reflect\fP
4379\f2java.util\fP
4380.TP 3
4381Extension Packages
4382\f2javax.servlet\fP
4383.TP 3
4384Other Packages
4385\f2java.new\fP
4386.RE
4387
4388.LP
4389.RE
4390.LP
4391.TP 3
4392\-nodeprecated
4393Prevents the generation of any deprecated API at all in the documentation. This does what \-nodeprecatedlist does, plus it does not generate any deprecated API throughout the rest of the documentation. This is useful when writing code and you don't want to be distracted by the deprecated code.
4394.LP
4395.TP 3
4396\-nodeprecatedlist
4397Prevents the generation of the file containing the list of deprecated APIs (deprecated\-list.html) and the link in the navigation bar to that page. (However, javadoc continues to generate the deprecated API throughout the rest of the document.) This is useful if your source code contains no deprecated API, and you want to make the navigation bar cleaner.
4398.LP
4399.TP 3
4400\-nosince
4401Omits from the generated docs the "Since" sections associated with the @since tags.
4402.LP
4403.TP 3
4404\-notree
4405Omits the class/interface hierarchy pages from the generated docs. These are the pages you reach using the "Tree" button in the navigation bar. The hierarchy is produced by default.
4406.LP
4407.TP 3
4408\-noindex
4409Omits the index from the generated docs. The index is produced by default.
4410.LP
4411.TP 3
4412\-nohelp
4413Omits the HELP link in the navigation bars at the top and bottom of each page of output.
4414.LP
4415.TP 3
4416\-nonavbar
4417Prevents the generation of the navigation bar, header and footer, otherwise found at the top and bottom of the generated pages. Has no affect on the "bottom" option. The \f2\-nonavbar\fP option is useful when you are interested only in the content and have no need for navigation, such as converting the files to PostScript or PDF for print only.
4418.LP
4419.TP 3
4420\-helpfile\ path/filename
4421Specifies the path of an alternate help file \f2path/filename\fP that the HELP link in the top and bottom navigation bars link to. Without this option, the Javadoc tool automatically creates a help file \f2help\-doc.html\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2help\-doc.html\fP \-\- the Javadoc tool will adjust the links in the navigation bar accordingly. For example:
4422.nf
4423\f3
4424.fl
4425 % \fP\f3javadoc \-helpfile /home/user/myhelp.html java.awt\fP
4426.fl
4427.fi
4428.TP 3
4429\-stylesheetfile\ path/filename
4430Specifies the path of an alternate HTML stylesheet file. Without this option, the Javadoc tool automatically creates a stylesheet file \f2stylesheet.css\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2stylesheet.css\fP. For example:
4431.nf
4432\f3
4433.fl
4434 % \fP\f3javadoc \-stylesheetfile /home/user/mystylesheet.css com.mypackage\fP
4435.fl
4436.fi
4437.TP 3
4438\-serialwarn
4439Generates compile\-time warnings for missing @serial tags. By default, Javadoc 1.2.2 (and later versions) generates no serial warnings. (This is a reversal from earlier versions.) Use this option to display the serial warnings, which helps to properly document default serializable fields and \f2writeExternal\fP methods.
4440.LP
4441.TP 3
4442\-charset\ name
4443Specifies the HTML character set for this document. The name should be a preferred MIME name as given in the
4444.na
4445\f2IANA Registry\fP @
4446.fi
4447http://www.iana.org/assignments/character\-sets. For example:
4448.nf
4449\f3
4450.fl
4451 % \fP\f3javadoc \-charset "iso\-8859\-1" mypackage\fP
4452.fl
4453.fi
4454would insert the following line in the head of every generated page:
4455.nf
4456\f3
4457.fl
4458 <META http\-equiv="Content\-Type" content="text/html; charset=ISO\-8859\-1">
4459.fl
4460\fP
4461.fi
4462This META tag is described in the
4463.na
4464\f2HTML standard\fP @
4465.fi
4466http://www.w3.org/TR/REC\-html40/charset.html#h\-5.2.2. (4197265 and 4137321)
4467.LP
4468Also see \-encoding and \-docencoding.
4469.LP
4470.TP 3
4471\-docencoding\ name
4472Specifies the encoding of the generated HTML files. The name should be a preferred MIME name as given in the
4473.na
4474\f2IANA Registry\fP @
4475.fi
4476http://www.iana.org/assignments/character\-sets. If you omit this option but use \-encoding, then the encoding of the generated HTML files is determined by \-encoding. Example:
4477.nf
4478\f3
4479.fl
4480 % \fP\f3javadoc \-docencoding "ISO\-8859\-1" mypackage\fP
4481.fl
4482.fi
4483Also see \-encoding and \-charset.
4484.LP
4485.TP 3
4486\-keywords
4487Adds HTML meta keyword tags to the generated file for each class. These tags can help the page be found by search engines that look for meta tags. (Most search engines that search the entire Internet do not look at meta tags, because pages can misuse them; but search engines offered by companies that confine their search to their own website can benefit by looking at meta tags.)
4488.LP
4489The meta tags include the fully qualified name of the class and the unqualified names of the fields and methods. Constructors are not included because they are identical to the class name. For example, the class String starts with these keywords:
4490.nf
4491\f3
4492.fl
4493 <META NAME="keywords" CONTENT="java.lang.String class">
4494.fl
4495 <META NAME="keywords" CONTENT="CASE_INSENSITIVE_ORDER">
4496.fl
4497 <META NAME="keywords" CONTENT="length()">
4498.fl
4499 <META NAME="keywords" CONTENT="charAt()">
4500.fl
4501\fP
4502.fi
4503.LP
4504.TP 3
4505\-tag\ \ tagname:Xaoptcmf:"taghead"
4506Enables the Javadoc tool to interpret a simple, one\-argument custom block tag \f2@\fP\f2tagname\fP in doc comments. So the Javadoc tool can "spell\-check" tag names, it is important to include a \f2\-tag\fP option for every custom tag that is present in the source code, disabling (with \f2X\fP) those that are not being output in the current run.
4507.LP
4508The colon (\f4:\fP) is always the separator. To use a colon in \f2tagname\fP, see Use of Colon in Tag Name.
4509.LP
4510The \f2\-tag\fP option outputs the tag's heading \f2taghead\fP in bold, followed on the next line by the text from its single argument, as shown in the example below. Like any block tag, this argument's text can contain inline tags, which are also interpreted. The output is similar to standard one\-argument tags, such as \f2@return\fP and \f2@author\fP. Omitting \f2taghead\fP causes \f2tagname\fP to appear as the heading.
4511.LP
4512\f3Placement of tags\fP \- The \f4Xaoptcmf\fP part of the argument determines where in the source code the tag is allowed to be placed, and whether the tag can be disabled (using \f2X\fP). You can supply either \f4a\fP, to allow the tag in all places, or any combination of the other letters: \f4X\fP (disable tag)
4513.br
4514\f4a\fP (all)
4515.br
4516\f4o\fP (overview)
4517.br
4518\f4p\fP (packages)
4519.br
4520\f4t\fP (types, that is classes and interfaces)
4521.br
4522\f4c\fP (constructors)
4523.br
4524\f4m\fP (methods)
4525.br
4526\f4f\fP (fields)
4527.LP
4528\f3Examples of single tags\fP \- An example of a tag option for a tag that that can be used anywhere in the source code is:
4529.nf
4530\f3
4531.fl
4532 \-tag todo:a:"To Do:"
4533.fl
4534\fP
4535.fi
4536If you wanted @todo to be used only with constructors, methods and fields, you would use:
4537.nf
4538\f3
4539.fl
4540 \-tag todo:cmf:"To Do:"
4541.fl
4542\fP
4543.fi
4544Notice the last colon (\f2:\fP) above is not a parameter separator, but is part of the heading text (as shown below). You would use either tag option for source code that contains the tag \f2@todo\fP, such as:
4545.nf
4546\f3
4547.fl
4548 @todo The documentation for this method needs work.
4549.fl
4550\fP
4551.fi
4552\f3Use of Colon in Tag Name\fP \- A colon can be used in a tag name if it is escaped with a backslash. For this doc comment:
4553.nf
4554\f3
4555.fl
4556 /**
4557.fl
4558 * @ejb:bean
4559.fl
4560 */
4561.fl
4562\fP
4563.fi
4564use this tag option:
4565.nf
4566\f3
4567.fl
4568 \-tag ejb\\\\:bean:a:"EJB Bean:"
4569.fl
4570\fP
4571.fi
4572\f3Spell\-checking tag names (Disabling tags)\fP \- Some developers put custom tags in the source code that they don't always want to output. In these cases, it is important to list all tags that are present in the source code, enabling the ones you want to output and disabling the ones you don't want to output. The presence of \f2X\fP disables the tag, while its absence enables the tag. This gives the Javadoc tool enough information to know if a tag it encounters is unknown, probably the results of a typo or a misspelling. It prints a warning in these cases.
4573.LP
4574You can add \f2X\fP to the placement values already present, so that when you want to enable the tag, you can simply delete the \f2X\fP. For example, if @todo is a tag that you want to suppress on output, you would use:
4575.nf
4576\f3
4577.fl
4578 \-tag todo:Xcmf:"To Do:"
4579.fl
4580\fP
4581.fi
4582or, if you'd rather keep it simple:
4583.nf
4584\f3
4585.fl
4586 \-tag todo:X
4587.fl
4588\fP
4589.fi
4590.LP
4591The syntax \f2\-tag todo:X\fP works even if \f2@todo\fP is defined by a taglet.
4592.LP
4593\f3Order of tags\fP \- The order of the \f2\-tag\fP (and \f2\-taglet\fP) options determine the order the tags are output. You can mix the custom tags with the standard tags to intersperse them. The tag options for standard tags are placeholders only for determining the order \-\- they take only the standard tag's name. (Subheadings for standard tags cannot be altered.) This is illustrated in the following example.
4594.LP
4595If \f2\-tag\fP is missing, then the position of \f2\-taglet\fP determines its order. If they are both present, then whichever appears last on the command line determines its order. (This happens because the tags and taglets are processed in the order that they appear on the command line. For example, if \f2\-taglet\fP and \f2\-tag\fP both have the name "todo", the one that appears last on the command line will determine its order.
4596.LP
4597\f3Example of a complete set of tags\fP \- This example inserts "To Do" after "Parameters" and before "Throws" in the output. By using "X", it also specifies that @example is a tag that might be encountered in the source code that should not be output during this run. Notice that if you use @argfile, you can put the tags on separate lines in an argument file like this (no line continuation characters needed):
4598.nf
4599\f3
4600.fl
4601 \-tag param
4602.fl
4603 \-tag return
4604.fl
4605 \-tag todo:a:"To Do:"
4606.fl
4607 \-tag throws
4608.fl
4609 \-tag see
4610.fl
4611 \-tag example:X
4612.fl
4613\fP
4614.fi
4615.LP
4616When javadoc parses the doc comments, any tag encountered that is neither a standard tag nor passed in with \f2\-tag\fP or \f2\-taglet\fP is considered unknown, and a warning is thrown.
4617.LP
4618The standard tags are initially stored internally in a list in their default order. Whenever \f2\-tag\fP options are used, those tags get appended to this list \-\- standard tags are moved from their default position. Therefore, if a \f2\-tag\fP option is omitted for a standard tag, it remains in its default position.
4619.LP
4620\f3Avoiding Conflicts\fP \- If you want to slice out your own namespace, you can use a dot\-separated naming convention similar to that used for packages: \f2com.mycompany.todo\fP. Sun will continue to create standard tags whose names do not contain dots. Any tag you create will override the behavior of a tag by the same name defined by Sun. In other words, if you create a tag or taglet \f2@todo\fP, it will always have the same behavior you define, even if Sun later creates a standard tag of the same name.
4621.LP
4622\f3Annotations vs. Javadoc Tags\fP \- In general, if the markup you want to add is intended to affect or produce documentation, it should probably be a javadoc tag; otherwise, it should be an annotation. See
4623.na
4624\f2Comparing Annotations and Javadoc Tags\fP @
4625.fi
4626http://java.sun.com/j2se/javadoc/writingdoccomments/index.html#annotations
4627.LP
4628You can also create more complex block tags, or custom inline tags with the \-taglet option.
4629.LP
4630.TP 3
4631\-taglet\ \ class
4632Specifies the class file that starts the taglet used in generating the documentation for that tag. Use the fully\-qualified name for \f2class\fP. This taglet also defines the number of text arguments that the custom tag has. The taglet accepts those arguments, processes them, and generates the output. For extensive documentation with example taglets, see:
4633.RS 3
4634.TP 2
4635o
4636Taglet Overview
4637.RE
4638.LP
4639Taglets are useful for block or inline tags. They can have any number of arguments and implement custom behavior, such as making text bold, formatting bullets, writing out the text to a file, or starting other processes.
4640.LP
4641Taglets can only determine where a tag should appear and in what form. All other decisions are made by the doclet. So a taglet cannot do things such as remove a class name from the list of included classes. However, it can execute side effects, such as printing the tag's text to a file or triggering another process.
4642.LP
4643Use the \f2\-tagletpath\fP option to specify the path to the taglet. Here is an example that inserts the "To Do" taglet after "Parameters" and ahead of "Throws" in the generated pages:
4644.nf
4645\f3
4646.fl
4647 \-taglet com.sun.tools.doclets.ToDoTaglet
4648.fl
4649 \-tagletpath /home/taglets
4650.fl
4651 \-tag return
4652.fl
4653 \-tag param
4654.fl
4655 \-tag todo
4656.fl
4657 \-tag throws
4658.fl
4659 \-tag see
4660.fl
4661\fP
4662.fi
4663.LP
4664Alternatively, you can use the \f2\-taglet\fP option in place of its \f2\-tag\fP option, but that may be harder to read.
4665.LP
4666.TP 3
4667\-tagletpath\ \ tagletpathlist
4668Specifies the search paths for finding taglet class files (.class). The \f2tagletpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths.
4669.LP
4670.TP 3
4671\-docfilessubdirs\
4672Enables deep copying of "\f2doc\-files\fP" directories. In other words, subdirectories and all contents are recursively copied to the destination. For example, the directory \f2doc\-files/example/images\fP and all its contents would now be copied. There is also an option to exclude subdirectories.
4673.LP
4674.TP 3
4675\-excludedocfilessubdir\ \ name1:name2...
4676Excludes any "\f2doc\-files\fP" subdirectories with the given names. This prevents the copying of SCCS and other source\-code\-control subdirectories.
4677.LP
4678.TP 3
4679\-noqualifier\ \ all\ | \ packagename1:packagename2:...
4680Omits qualifying package name from ahead of class names in output. The argument to \f2\-noqualifier\fP is either "\f2all\fP" (all package qualifiers are omitted) or a colon\-separate list of packages, with wildcards, to be removed as qualifiers. The package name is removed from places where class or interface names appear.
4681.LP
4682The following example omits all package qualifiers:
4683.nf
4684\f3
4685.fl
4686 \-noqualifier all
4687.fl
4688\fP
4689.fi
4690The following example omits "java.lang" and "java.io" package qualifiers:
4691.nf
4692\f3
4693.fl
4694 \-noqualifier java.lang:java.io
4695.fl
4696\fP
4697.fi
4698The following example omits package qualifiers starting with "java", and "com.sun" subpackages (but not "javax"):
4699.nf
4700\f3
4701.fl
4702 \-noqualifier java.*:com.sun.*
4703.fl
4704\fP
4705.fi
4706Where a package qualifier would appear due to the above behavior, the name can be suitably shortened \-\- see How a name is displayed. This rule is in effect whether or not \f2\-noqualifier\fP is used.
4707.LP
4708.TP 3
4709\-notimestamp\
4710Suppresses the timestamp, which is hidden in an HTML comment in the generated HTML near the top of each page. Useful when you want to run javadoc on two source bases and diff them, as it prevents timestamps from causing a diff (which would otherwise be a diff on every page). The timestamp includes the javadoc version number, and currently looks like this:
4711.nf
4712\f3
4713.fl
4714 <!\-\- Generated by javadoc (build 1.5.0\-internal) on Tue Jun 22 09:57:24 PDT 2004 \-\->
4715.fl
4716\fP
4717.fi
4718.LP
4719.TP 3
4720\-nocomment\
4721Suppress the entire comment body, including the main description and all tags, generating only declarations. This option enables re\-using source files originally intended for a different purpose, to produce skeleton HTML documentation at the early stages of a new project.
4722.RE
4723.SH "COMMAND LINE ARGUMENT FILES"
4724.LP
4725.LP
4726To shorten or simplify the javadoc command line, you can specify one or more files that themselves contain arguments to the \f2javadoc\fP command (except \f2\-J\fP options). This enables you to create javadoc commands of any length on any operating system.
4727.LP
4728.LP
4729An argument file can include javac options and source filenames in any combination. The arguments within a file can be space\-separated or newline\-separated. If a filename contains embedded spaces, put the whole filename in double quotes.
4730.LP
4731.LP
4732Filenames within an argument file are relative to the current directory, not the location of the argument file. Wildcards (*) are not allowed in these lists (such as for specifying \f2*.java\fP). Use of the '\f2@\fP' character to recursively interpret files is not supported. The \f2\-J\fP options are not supported because they are passed to the launcher, which does not support argument files.
4733.LP
4734.LP
4735When executing javadoc, pass in the path and name of each argument file with the '\f2@\fP' leading character. When javadoc encounters an argument beginning with the character `\f2@\fP', it expands the contents of that file into the argument list.
4736.LP
4737.SS
4738Example \- Single Arg File
4739.LP
4740.LP
4741You could use a single argument file named "\f2argfile\fP" to hold all Javadoc arguments:
4742.LP
4743.nf
4744\f3
4745.fl
4746 % \fP\f3javadoc @argfile\fP
4747.fl
4748.fi
4749
4750.LP
4751.LP
4752This argument file could contain the contents of both files shown in the next example.
4753.LP
4754.SS
4755Example \- Two Arg Files
4756.LP
4757.LP
4758You can create two argument files \-\- one for the Javadoc options and the other for the package names or source filenames: (Notice the following lists have no line\-continuation characters.)
4759.LP
4760.LP
4761Create a file named "\f2options\fP" containing:
4762.LP
4763.nf
4764\f3
4765.fl
4766 \-d docs\-filelist
4767.fl
4768 \-use
4769.fl
4770 \-splitindex
4771.fl
4772 \-windowtitle 'Java 2 Platform v1.3 API Specification'
4773.fl
4774 \-doctitle 'Java<sup><font size="\-2">TM</font></sup> 2 Platform 5.0 API Specification'
4775.fl
4776 \-header '<b>Java 2 Platform </b><br><font size="\-1">5.0</font>'
4777.fl
4778 \-bottom 'Copyright 1993\-2000 Sun Microsystems, Inc. All Rights Reserved.'
4779.fl
4780 \-group "Core Packages" "java.*"
4781.fl
4782 \-overview /java/pubs/ws/1.5/src/share/classes/overview\-core.html
4783.fl
4784 \-sourcepath /java/pubs/ws/1.5/src/share/classes
4785.fl
4786\fP
4787.fi
4788
4789.LP
4790.LP
4791Create a file named "\f2packages\fP" containing:
4792.LP
4793.nf
4794\f3
4795.fl
4796 com.mypackage1
4797.fl
4798 com.mypackage2
4799.fl
4800 com.mypackage3
4801.fl
4802\fP
4803.fi
4804
4805.LP
4806.LP
4807You would then run javadoc with:
4808.LP
4809.nf
4810\f3
4811.fl
4812 % \fP\f3javadoc @options @packages\fP
4813.fl
4814.fi
4815
4816.LP
4817.SS
4818Example \- Arg Files with Paths
4819.LP
4820.LP
4821The argument files can have paths, but any filenames inside the files are relative to the current working directory (not \f2path1\fP or \f2path2\fP):
4822.LP
4823.nf
4824\f3
4825.fl
4826 % \fP\f3javadoc @path1/options @path2/packages\fP
4827.fl
4828.fi
4829
4830.LP
4831.SS
4832Example \- Option Arguments
4833.LP
4834.LP
4835Here's an example of saving just an argument to a javadoc option in an argument file. We'll use the \f2\-bottom\fP option, since it can have a lengthy argument. You could create a file named "\f2bottom\fP" containing its text argument:
4836.LP
4837.nf
4838\f3
4839.fl
4840'<font size="\-1"><a href="http://java.sun.com/cgi\-bin/bugreport.cgi">Submit a
4841.fl
4842bug or feature</a><br><br>Java is a trademark or registered trademark of
4843.fl
4844Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993\-2000 Sun
4845.fl
4846Microsystems, Inc. 901 San Antonio Road,<br>Palo Alto, California, 94303, U.S.A.
4847.fl
4848All Rights Reserved.</font>'
4849.fl
4850\fP
4851.fi
4852
4853.LP
4854.LP
4855Then run the Javadoc tool with:
4856.LP
4857.nf
4858\f3
4859.fl
4860 % \fP\f3javadoc \-bottom @bottom @packages\fP
4861.fl
4862.fi
4863
4864.LP
4865.LP
4866Or you could include the \f2\-bottom\fP option at the start of the argument file, and then just run it as:
4867.LP
4868.nf
4869\f3
4870.fl
4871 % \fP\f3javadoc @bottom @packages\fP
4872.fl
4873.fi
4874.SH NAME
4875Running
4876.SH "RUNNING JAVADOC"
4877.LP
4878.LP
4879\f3Version Numbers\fP \- The version number of javadoc can be determined using \f3javadoc \-J\-version\fP. The version number of the standard doclet appears in its output stream. It can be turned off with \f2\-quiet\fP.
4880.LP
4881.LP
4882\f3Public programmatic interface\fP \- To invoke the Javadoc tool from within programs written in the Java language. This interface is in \f2com.sun.tools.javadoc.Main\fP (and javadoc is re\-entrant). For more details, see Standard Doclet.
4883.LP
4884.LP
4885\f3Running Doclets\fP \- The instructions given below are for invoking the standard HTML doclet. To invoke a custom doclet, use the \-doclet and \-docletpath options. For full, working examples of running a particular doclet, see
4886.na
4887\f2Running the MIF Doclet\fP @
4888.fi
4889http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html#runningmifdoclet.
4890.LP
4891.SH "SIMPLE EXAMPLES"
4892.LP
4893.LP
4894You can run javadoc on entire packages or individual source files. Each package name has a corresponding directory name. In the following examples, the source files are located at \f2/home/src/java/awt/*.java\fP. The destination directory is \f2/home/html\fP.
4895.LP
4896.SS
4897Documenting One or More Packages
4898.LP
4899.LP
4900To document a package, the source files (\f2*.java\fP) for that package must be located in a directory having the same name as the package. If a package name is made up of several identifiers (separated by dots, such as \f2java.awt.color\fP), each subsequent identifier must correspond to a deeper subdirectory (such as \f2java/awt/color\fP). You may split the source files for a single package among two such directory trees located at different places, as long as \f2\-sourcepath\fP points to them both \-\- for example \f2src1/java/awt/color\fP and \f2src2/java/awt/color\fP.
4901.LP
4902.LP
4903You can run javadoc either by changing directories (with \f2cd\fP) or by using \f2\-sourcepath\fP option. The examples below illustrate both alternatives.
4904.LP
4905.RS 3
4906.TP 2
4907o
4908\f3Case 1 \- Run recursively starting from one or more packages\fP \- This example uses \-sourcepath so javadoc can be run from any directory and \-subpackages (a new 1.4 option) for recursion. It traverses the subpackages of the \f2java\fP directory excluding packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
4909.nf
4910\f3
4911.fl
4912 % \fP\f3javadoc \fP\f3\-d\fP\f3 /home/html \fP\f3\-sourcepath\fP\f3 /home/src \fP\f3\-subpackages\fP\f3 java \fP\f3\-exclude\fP\f3 java.net:java.lang\fP
4913.fl
4914.fi
4915.LP
4916To also traverse down other package trees, append their names to the \f2\-subpackages\fP argument, such as \f2java:javax:org.xml.sax\fP.
4917.TP 2
4918o
4919\f3Case 2 \- Run on explicit packages after changing to the "root" source directory\fP \- Change to the parent directory of the fully\-qualified package. Then run javadoc, supplying names of one or more packages you want to document:
4920.nf
4921\f3
4922.fl
4923 % \fP\f3cd /home/src/\fP
4924.fl
4925 % \f3javadoc \-d /home/html java.awt java.awt.event\fP
4926.fl
4927.fi
4928.TP 2
4929o
4930\f3Case 3 \- Run from any directory on explicit packages in a single directory tree\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying \f2\-sourcepath\fP with the parent directory of the top\-level package, and supplying names of one or more packages you want to document:
4931.nf
4932\f3
4933.fl
4934 % \fP\f3javadoc \-d /home/html \-sourcepath /home/src java.awt java.awt.event\fP
4935.fl
4936.fi
4937.TP 2
4938o
4939\f3Case 4 \- Run from any directory on explicit packages in multiple directory trees\fP \- This is the same as case 3, but for packages in separate directory trees. Run javadoc supplying \f2\-sourcepath\fP with the path to each tree's root (colon\-separated) and supply names of one or more packages you want to document. All source files for a given package do not need to be located under a single root directory \-\- they just need to be found somewhere along the sourcepath.
4940.nf
4941\f3
4942.fl
4943 % \fP\f3javadoc \-d /home/html \-sourcepath /home/src1:/home/src2 java.awt java.awt.event\fP
4944.fl
4945.fi
4946.RE
4947
4948.LP
4949.LP
4950Result: All cases generate HTML\-formatted documentation for the public and protected classes and interfaces in packages \f2java.awt\fP and \f2java.awt.event\fP and save the HTML files in the specified destination directory (\f2/home/html\fP). Because two or more packages are being generated, the document has three HTML frames \-\- for the list of packages, the list of classes, and the main class pages.
4951.LP
4952.SS
4953Documenting One or More Classes
4954.LP
4955.LP
4956The second way to run the Javadoc tool is by passing in one or more source files (\f2.java\fP). You can run javadoc either of the following two ways \-\- by changing directories (with \f2cd\fP) or by fully\-specifying the path to the \f2.java\fP files. Relative paths are relative to the current directory. The \f2\-sourcepath\fP option is ignored when passing in source files. You can use command line wildcards, such as asterisk (*), to specify groups of classes.
4957.LP
4958.RS 3
4959.TP 2
4960o
4961\f3Case 1 \- Changing to the source directory\fP \- Change to the directory holding the \f2.java\fP files. Then run javadoc, supplying names of one or more source files you want to document.
4962.nf
4963\f3
4964.fl
4965 % \fP\f3cd /home/src/java/awt\fP
4966.fl
4967 % \f3javadoc \-d /home/html Button.java Canvas.java Graphics*.java\fP
4968.fl
4969.fi
4970This example generates HTML\-formatted documentation for the classes \f2Button\fP, \f2Canvas\fP and classes beginning with \f2Graphics\fP. Because source files rather than package names were passed in as arguments to javadoc, the document has two frames \-\- for the list of classes and the main page.
4971.TP 2
4972o
4973\f3Case 2 \- Changing to the package root directory\fP \- This is useful for documenting individual source files from different subpackages off the same root. Change to the package root directory, and supply the source files with paths from the root.
4974.nf
4975\f3
4976.fl
4977 % \fP\f3cd /home/src/\fP
4978.fl
4979 % \f3javadoc \-d /home/html java/awt/Button.java java/applet/Applet.java\fP
4980.fl
4981.fi
4982This example generates HTML\-formatted documentation for the classes \f2Button\fP and \f2Applet\fP.
4983.TP 2
4984o
4985\f3Case 3 \- From any directory\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying the absolute path (or path relative to the current directory) to the \f2.java\fP files you want to document.
4986.nf
4987\f3
4988.fl
4989 % \fP\f3javadoc \-d /home/html /home/src/java/awt/Button.java /home/src/java/awt/Graphics*.java\fP
4990.fl
4991.fi
4992This example generates HTML\-formatted documentation for the class \f2Button\fP and classes beginning with \f2Graphics\fP.
4993.RE
4994
4995.LP
4996.SS
4997Documenting Both Packages and Classes
4998.LP
4999.LP
5000You can document entire packages and individual classes at the same time. Here's an example that mixes two of the previous examples. You can use \f2\-sourcepath\fP for the path to the packages but not for the path to the individual classes.
5001.LP
5002.nf
5003\f3
5004.fl
5005 % \fP\f3javadoc \-d /home/html \-sourcepath /home/src java.awt /home/src/java/applet/Applet.java\fP
5006.fl
5007.fi
5008
5009.LP
5010.LP
5011This example generates HTML\-formatted documentation for the package \f2java.awt\fP and class \f2Applet\fP. (The Javadoc tool determines the package name for \f2Applet\fP from the package declaration, if any, in the \f2Applet.java\fP source file.)
5012.LP
5013.SH "REAL WORLD EXAMPLE"
5014.LP
5015.LP
5016The Javadoc tool has many useful options, some of which are more commonly used than others. Here is effectively the command we use to run the Javadoc tool on the Java platform API. We use 180MB of memory to generate the documentation for the 1500 (approx.) public and protected classes in the Java 2 Platform, Standard Edition, v1.2.
5017.LP
5018.LP
5019The same example is shown twice \-\- first as executed on the command line, then as executed from a makefile. It uses absolute paths in the option arguments, which enables the same \f2javadoc\fP command to be run from any directory.
5020.LP
5021.SS
5022Command Line Example
5023.LP
5024.LP
5025This command line example is over 900 characters, which is too long for some shells, such as DOS. You can use a command line argument file (or write a shell script) to workaround this limitation.
5026.LP
5027.nf
5028\f3
5029.fl
5030% javadoc \-sourcepath /java/jdk/src/share/classes \\
5031.fl
5032 \-overview /java/jdk/src/share/classes/overview.html \\
5033.fl
5034 \-d /java/jdk/build/api \\
5035.fl
5036 \-use \\
5037.fl
5038 \-splitIndex \\
5039.fl
5040 \-windowtitle 'Java 2 Platform 5.0 API Specification' \\
5041.fl
5042 \-doctitle 'Java<sup><font size="\-2">TM</font></sup> 2 Platform 5.0 API Specification' \\
5043.fl
5044 \-header '<b>Java 2 Platform </b><br><font size="\-1">5.0</font>' \\
5045.fl
5046 \-bottom '<font size="\-1"><a href="http://java.sun.com/cgi\-bin/bugreport.cgi">Submit
5047.fl
5048a bug or feature</a><br><br>Java is a trademark or registered trademark of Sun Microsystems,
5049.fl
5050Inc. in the US and other countries.<br>Copyright 1993\-1999 Sun Microsystems, Inc.
5051.fl
5052901 San Antonio Road,<br>Palo Alto, California, 94303, U.S.A. All Rights Reserved.</font>' \\
5053.fl
5054 \-group "Core Packages" "java.*:com.sun.java.*:org.omg.*" \\
5055.fl
5056 \-group "Extension Packages" "javax.*" \\
5057.fl
5058 \-J\-Xmx180m \\
5059.fl
5060 @packages
5061.fl
5062\fP
5063.fi
5064
5065.LP
5066.LP
5067where \f2packages\fP is the name of a file containing the packages to process, such as \f2java.applet java.lang\fP. None of the options should contain any newline characters between the single quotes. (For example, if you copy and paste this example, delete the newline characters from the \f2\-bottom\fP option.) See the other notes listed below.
5068.LP
5069.SS
5070Makefile Example
5071.LP
5072.LP
5073This is an example of a GNU makefile. For an example of a Windows makefile, see
5074.na
5075\f2creating a makefile for Windows\fP @
5076.fi
5077http://java.sun.com/j2se/javadoc/faq/index.html#makefiles.
5078.LP
5079.nf
5080\f3
5081.fl
5082javadoc \-\fP\f3sourcepath\fP\f3 $(SRCDIR) \\ /* Sets path for source files */
5083.fl
5084 \-\fP\f3overview\fP\f3 $(SRCDIR)/overview.html \\ /* Sets file for overview text */
5085.fl
5086 \-\fP\f3d\fP\f3 /java/jdk/build/api \\ /* Sets destination directory */
5087.fl
5088 \-\fP\f3use\fP\f3 \\ /* Adds "Use" files */
5089.fl
5090 \-\fP\f3splitIndex\fP\f3 \\ /* Splits index A\-Z */
5091.fl
5092 \-\fP\f3windowtitle\fP\f3 $(WINDOWTITLE) \\ /* Adds a window title */
5093.fl
5094 \-\fP\f3doctitle\fP\f3 $(DOCTITLE) \\ /* Adds a doc title */
5095.fl
5096 \-\fP\f3header\fP\f3 $(HEADER) \\ /* Adds running header text */
5097.fl
5098 \-\fP\f3bottom\fP\f3 $(BOTTOM) \\ /* Adds text at bottom */
5099.fl
5100 \-\fP\f3group\fP\f3 $(GROUPCORE) \\ /* 1st subhead on overview page */
5101.fl
5102 \-\fP\f3group\fP\f3 $(GROUPEXT) \\ /* 2nd subhead on overview page */
5103.fl
5104 \-\fP\f3J\fP\f3\-Xmx180m \\ /* Sets memory to 180MB */
5105.fl
5106 java.lang java.lang.reflect \\ /* Sets packages to document */
5107.fl
5108 java.util java.io java.net \\
5109.fl
5110 java.applet
5111.fl
5112
5113.fl
5114WINDOWTITLE = 'Java 2 Platform v1.2 API Specification'
5115.fl
5116DOCTITLE = 'Java<sup><font size="\-2">TM</font></sup> 2 Platform v1.2 API Specification'
5117.fl
5118HEADER = '<b>Java 2 Platform </b><br><font size="\-1">v1.2</font>'
5119.fl
5120BOTTOM = '<font size="\-1"><a href="http://java.sun.com/cgi\-bin/bugreport.cgi">Submit
5121.fl
5122 a bug or feature</a><br><br>Java is a trademark or registered trademark
5123.fl
5124 of Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993\-1999
5125.fl
5126 Sun Microsystems, Inc. 901 San Antonio Road,<br>Palo Alto, California, 94303, U.S.A.
5127.fl
5128 All Rights Reserved.</font>'
5129.fl
5130GROUPCORE = '"Core Packages" "java.*:com.sun.java.*:org.omg.*"'
5131.fl
5132GROUPEXT = '"Extension Packages" "javax.*"'
5133.fl
5134SRCDIR = '/java/jdk/1.2/src/share/classes'
5135.fl
5136\fP
5137.fi
5138
5139.LP
5140.LP
5141Single quotes are used to surround makefile arguments.
5142.LP
5143.LP
5144\f3NOTES\fP
5145.LP
5146.RS 3
5147.TP 2
5148o
5149If you omit the \f2\-windowtitle\fP option, the Javadoc tool copies the doc title to the window title. The \f2\-windowtitle\fP text is basically the same as the \f2\-doctitle\fP but without HTML tags, to prevent those tags from appearing as raw text in the window title.
5150.TP 2
5151o
5152If you omit the \f2\-footer\fP option, as done here, the Javadoc tool copies the header text to the footer.
5153.TP 2
5154o
5155Other important options you might want to use but not needed in this example are \-\f2classpath\fP and \-\f2link\fP.
5156.RE
5157
5158.LP
5159.SH "TROUBLESHOOTING"
5160.LP
5161.SS
5162General Troubleshooting
5163.LP
5164.RS 3
5165.TP 2
5166o
5167\f3Javadoc FAQ\fP \- Commonly\-encountered bugs and troubleshooting tips can be found on the
5168.na
5169\f2Javadoc FAQ\fP @
5170.fi
5171http://java.sun.com/j2se/javadoc/faq/index.html#B
5172.TP 2
5173o
5174\f3Bugs and Limitations\fP \- You can also see some bugs listed at
5175.na
5176\f2Important Bug Fixes and Changes\fP @
5177.fi
5178http://java.sun.com/j2se/1.5.0/fixedbugs/index.html.
5179.TP 2
5180o
5181\f3Version number\fP \- See version numbers.
5182.TP 2
5183o
5184\f3Documents only legal classes\fP \- When documenting a package, javadoc only reads files whose names are composed of legal class names. You can prevent javadoc from parsing a file by including, for example, a hyphen "\-" in its filename.
5185.RE
5186
5187.LP
5188.SS
5189Errors and Warnings
5190.LP
5191.LP
5192Error and warning messages contain the filename and line number to the declaration line rather than to the particular line in the doc comment.
5193.LP
5194.RS 3
5195.TP 2
5196o
5197\f2"error: cannot read: Class1.java"\fP the Javadoc tool is trying to load the class Class1.java in the current directory. The class name is shown with its path (absolute or relative), which in this case is the same as \f2./Class1.java\fP.
5198.RE
5199
5200.LP
5201.SH "ENVIRONMENT"
5202.LP
5203.RS 3
5204.TP 3
5205CLASSPATH
5206Environment variable that provides the path which javadoc uses to find user class files. This environment variable is overridden by the \f2\-classpath\fP option. Separate directories with a colon, for example:
5207.:/home/classes:/usr/local/java/classes
5208.RE
5209
5210.LP
5211.SH "SEE ALSO"
5212.LP
5213.RS 3
5214.TP 2
5215o
5216javac
5217.TP 2
5218o
5219java
5220.TP 2
5221o
5222jdb
5223.TP 2
5224o
5225javah
5226.TP 2
5227o
5228javap
5229.TP 2
5230o
5231.na
5232\f2Javadoc Home Page\fP @
5233.fi
5234http://java.sun.com/j2se/javadoc/index.jsp
5235.TP 2
5236o
5237.na
5238\f2How to Write Doc Comments for Javadoc\fP @
5239.fi
5240http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
5241.TP 2
5242o
5243Setting the Class Path
5244.TP 2
5245o
5246How Javac and Javadoc Find Classes (tools.jar)
5247.RE
5248
5249.LP
5250.LP
5251Javadoc is a trademark of Sun Microsystems, Inc. (The \f2javadoc\fP command itself does not require the trademark symbol.)