Home | Trees | Indices | Help |
|
---|
|
Epydoc parser for Javadoc docstrings. Javadoc is an HTML-based markup language that was developed for documenting Java APIs with inline comments. It consists of raw HTML, augmented by Javadoc tags. There are two types of Javadoc tag:
@tag [arg]
", where
tag
indicates the type of block, and
arg
is an optional argument. (For
fields that take arguments, Javadoc assumes that the single word
immediately following the tag is an argument; multi-word arguments
cannot be used with javadoc.)
{@tag [args...]}
",
where tag
indicates the type of
inline markup, and args
are optional
arguments.
Epydoc supports all Javadoc tags, except:
{@docRoot}
, which gives the (relative) URL of the
generated documentation's root.
{@inheritDoc}
, which copies the documentation of the
nearest overridden object. This can be used to combine the
documentation of the overridden object with the documentation of the
overridding object.
@serial
, @serialField
, and
@serialData
which describe the serialization (pickling)
of an object.
{@value}
, which copies the value of a constant.
Warning: Epydoc only supports HTML output for Javadoc docstrings.
|
|||
ParsedJavadocDocstring An encoded version of a Javadoc docstring. |
|
|||
ParsedDocstring |
|
|
Parse the given docstring, which is formatted using Javadoc; and
return a
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Jun 13 23:50:20 2008 | http://epydoc.sourceforge.net |