The Jadexdoc tool uses a standard doclet to determine its output. The Jadexdoc tool provides a set of command-line options that can be used with any doclet. These options are described below under the sub-heading Section 8.5.1, “Jadexdoc 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.
-subpackages
pck1:pck2:...
Generates 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 package argument is
any top-level subpackage (such as jadex
) or fully qualified package (such as
jadex.examples
) that does not need to contain source files. Arguments are
separated by colons (on all operating systems). Wildcards are not needed or allowed.
java jadex.tools.jadexdoc.Main -d docs -subpackages jadex.examples.hunterprey:jadex.examples.cleanerworld
You can use -subpackages
in conjunction with
-exclude
to exclude specific packages.
-exclude
pck1:pck2:...
Unconditionally excludes the specified packages and their subpackages from the
list formed by -subpackages
. It excludes those packages even if they would
otherwise be included by some previous or later -subpackages
option.
java jadex.tools.jadexdoc.Main -d docs -subpackages jadex -exclude jadex.planlib:jadex.examples.testcases
-help
Displays the online help, which lists these Jadexdoc and doclet command line options.
-quiet
Shuts off non-error and non-warning messages, leaving only the warnings and errors appear, making them easier to view. Also suppresses the version string.