Go to file
Erich Schubert 0477f4b82d add -!qualifyGenerics option that strips package names only in generics
This is useful in combination with `-qualify`;
in particular with `-qualify -postfixpackage`

This version also supports *inner* classes, where the outer class has a
generic.

Test case: `p1.Class<A extends g1.G>.Inner<B super g2.G>`

Depending on `-qualify` and `-qualifyGenerics` this can become either:
```
p1.Class<A extends g1.G>.Inner<B super g2.G>
p1.Class<A extends G>.Inner<B super G>
Class<A extends g1.G>.Inner<B super g2.G>
Class<A extends G>.Inner<B super G>
```
on the long run, it may however be convenient to also allow hiding
generics completely, and/or show them just as diamonds. For example
`Class<>.Inner<>` as a shorthand. Other users will prefer to see the
constraint only, e.g., `Class<G>.Inner<G>`... it may need a list of
different named formatters.
2018-10-24 10:55:35 +02:00
doc add -!qualifyGenerics option that strips package names only in generics 2018-10-24 10:55:35 +02:00
legacy Legacy file reorganization 2012-04-25 13:38:55 +03:00
src add -!qualifyGenerics option that strips package names only in generics 2018-10-24 10:55:35 +02:00
testdata Merge branch 'master' and update test data 2017-03-21 19:53:36 +02:00
tools Do not update files for trivial differences 2014-10-28 20:15:40 +02:00
web Update index.html 2017-03-15 16:46:24 +01:00
.classpath Added "-autosize" parameter and fixed parameter matching bug with "!" 2017-03-21 13:20:15 -04:00
.gitignore Add Version.java 2014-10-29 00:03:19 +02:00
.project Adding the eclipse project files and a first version of .cvsignore file 2005-11-23 22:04:17 +00:00
LICENSE Add license file, and clarify licensing terms, following suggestion by 2007-05-06 11:20:54 +00:00
Makefile Update project web page location 2016-09-16 23:38:47 +03:00
README.mediawiki Correct URL 2016-09-16 23:47:03 +03:00
README.txt Update project web page location 2016-09-16 23:38:47 +03:00
TODO Remove obsolete RCS/CVS $Id$ 2014-10-28 16:29:43 +02:00
build.xml Added "-autosize" parameter and fixed parameter matching bug with "!" 2017-03-21 13:20:15 -04:00
pom.template.xml Update project web page location 2016-09-16 23:38:47 +03:00
pom.xml Added "-autosize" parameter and fixed parameter matching bug with "!" 2017-03-21 13:20:15 -04:00
sequence.pic Remove obsolete RCS/CVS $Id$ 2014-10-28 16:29:43 +02:00
umlgraph Make umlgraph shell script work under Cygwin 2015-10-05 14:23:19 +03:00
umlgraph.bat Remove obsolete RCS/CVS $Id$ 2014-10-28 16:29:43 +02:00

README.txt

UMLGraph - Declarative Drawing of UML Diagrams

UMLGraph allows the declarative specification and drawing of
UML class and sequence diagrams.  You can browse the system's
documentation from the doc/index.html page, or print it from
doc/indexw.html.

To install the elements required to run UMLGraph, simply copy
the contents of the lib directory to a location consistent with
your installation's conventions (for example to /usr/local/lib).

To compile the Java doclet from the source code run ant on the
build.xml file.

If you change the source code, you can run regression tests by
executing "ant test".

Project home page: http://www.spinellis.gr/umlgraph
GitHub page: git@github.com:dspinellis/UMLGraph.git

Diomidis Spinellis - November 2005, August 2008, April 2012, September 2016