APIviz 1.2.5.GA (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News APIviz 1.2.5.GA (Default branch)
# 1  
Old 12-03-2008
APIviz 1.2.5.GA (Default branch)

ImageAPIviz is a JavaDoc doclet which extends the Javastandard doclet. It generates comprehensiveUML-like class and package diagrams for quickunderstanding of the overall API structure.License: GNU Lesser General Public License (LGPL)Changes:
The "-nopackagediagram" option was added, whichdisables the generation of the package diagram inthe Javadoc overview summary page.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
edoc_doclet(3erl)					     Erlang Module Definition						 edoc_doclet(3erl)

NAME
edoc_doclet - Standard doclet module for EDoc. DESCRIPTION
Standard doclet module for EDoc. DATA TYPES
doclet_gen() = #doclet_gen{sources=[string()], app=no_app() | atom(), packages=[atom()], modules=[atom()], modules=[atom()], filemap=function()} : doclet_toc() = #doclet_gen{paths=[string()], indir=string()} : edoc_context() = #context{dir=string(), env=edoc_env() (see module edoc_lib), opts=[term()]} : no_app() : A value used to mark absence of an Erlang application context. Use the macro NO_APP defined in edoc_doclet.hrl to produce this value. EXPORTS
run(Command::doclet_gen() | doclet_toc(), Ctxt::edoc_context()) -> ok Main doclet entry point. See the file edoc_doclet.hrl for the data structures used for passing parameters. Also see edoc:layout/2 for layout-related options, and edoc:get_doc/2 for options related to reading source files. Options: {file_suffix, string()} : Specifies the suffix used for output files. The default value is ".html" . {hidden, boolean()} : If the value is true , documentation of hidden modules and functions will also be included. The default value is false . {overview, edoc:filename()} : Specifies the name of the overview-file. By default, this doclet looks for a file "overview.edoc" in the target directory. {private, boolean()} : If the value is true , documentation of private modules and functions will also be included. The default value is false . {stylesheet, string()} : Specifies the URI used for referencing the stylesheet. The default value is "stylesheet.css" . If an empty string is specified, no stylesheet reference will be generated. {stylesheet_file, edoc:filename()} : Specifies the name of the stylesheet file. By default, this doclet uses the file "stylesheet.css" in the priv subdirectory of the EDoc installation directory. The named file will be copied to the target directory. {title, string()} : Specifies the title of the overview-page. SEE ALSO
edoc AUTHORS
Richard Carlsson <richardc@it.uu.se > edoc 0.7.7 edoc_doclet(3erl)