mirror of https://github.com/dspinellis/UMLGraph
Now use .jar file for distributing compiled programs.
This commit is contained in:
parent
be1410d173
commit
d17ae717c1
15
index.html
15
index.html
|
|
@ -68,10 +68,11 @@ doclet API that specifies the content and format of the output
|
|||
generated by the <em>javadoc</em> tool).
|
||||
<em>Javadoc</em> is part of the Sun JDK, so a typical JDK installation will also
|
||||
include <em>javadoc</em>.
|
||||
Before running <em>javadoc</em> you need to place the <code>UmlGraph.class</code>
|
||||
file in a location accessible by <em>javadoc</em> (the Java class path or the
|
||||
current directory).
|
||||
You then run <em>javadoc</em> with the argument <code>-doclet UmlGraph</code>
|
||||
Before running <em>javadoc</em> you need to place the <code>UmlGraph.jar</code>
|
||||
file in a location accessible by <em>javadoc</em>
|
||||
(e.g. the Java class path or the current directory).
|
||||
You then run <em>javadoc</em> with arguments <code>-doclet UmlGraph</code>
|
||||
<code>-docletpath /path/to/UmlGraph.jar</code>
|
||||
and append at the end the file(s) that contain your diagram
|
||||
specification.
|
||||
You can of course use any of the <em>javadoc</em> general options;
|
||||
|
|
@ -79,7 +80,7 @@ You can of course use any of the <em>javadoc</em> general options;
|
|||
specify public elements.
|
||||
Example:
|
||||
<pre>
|
||||
javadoc -doclet UmlGraph -private Simple.java
|
||||
javadoc -docletpath UmlGraph.jar -doclet UmlGraph -private Simple.java
|
||||
</pre>
|
||||
<em>javadoc</em> will create a file named <code>graph.dot</code>
|
||||
in the current directory;
|
||||
|
|
@ -182,8 +183,8 @@ UMLGraph is hereby made freely available as Open Source Software.
|
|||
You can download it in source and compiled format from the following links:
|
||||
<ul>
|
||||
<li> <a href="UmlGraph.java">UmlGraph.java (source code)</a>
|
||||
<li> <a href="UmlGraph.class">UmlGraph.class (compiled)</a>
|
||||
<li> <a href="makefile">Makefile (GNU make)</a>
|
||||
<li> <a href="UmlGraph.jar">UmlGraph.jar (compiled archive)</a>
|
||||
<li> <a href="makefile">Makefile example (GNU make)</a>
|
||||
</ul>
|
||||
|
||||
<h3>Version History</h3> <!-- {{{1 -->
|
||||
|
|
|
|||
|
|
@ -68,10 +68,11 @@ doclet API that specifies the content and format of the output
|
|||
generated by the <em>javadoc</em> tool).
|
||||
<em>Javadoc</em> is part of the Sun JDK, so a typical JDK installation will also
|
||||
include <em>javadoc</em>.
|
||||
Before running <em>javadoc</em> you need to place the <code>UmlGraph.class</code>
|
||||
file in a location accessible by <em>javadoc</em> (the Java class path or the
|
||||
current directory).
|
||||
You then run <em>javadoc</em> with the argument <code>-doclet UmlGraph</code>
|
||||
Before running <em>javadoc</em> you need to place the <code>UmlGraph.jar</code>
|
||||
file in a location accessible by <em>javadoc</em>
|
||||
(e.g. the Java class path or the current directory).
|
||||
You then run <em>javadoc</em> with arguments <code>-doclet UmlGraph</code>
|
||||
<code>-docletpath /path/to/UmlGraph.jar</code>
|
||||
and append at the end the file(s) that contain your diagram
|
||||
specification.
|
||||
You can of course use any of the <em>javadoc</em> general options;
|
||||
|
|
@ -79,7 +80,7 @@ You can of course use any of the <em>javadoc</em> general options;
|
|||
specify public elements.
|
||||
Example:
|
||||
<pre>
|
||||
javadoc -doclet UmlGraph -private Simple.java
|
||||
javadoc -docletpath UmlGraph.jar -doclet UmlGraph -private Simple.java
|
||||
</pre>
|
||||
<em>javadoc</em> will create a file named <code>graph.dot</code>
|
||||
in the current directory;
|
||||
|
|
@ -182,8 +183,8 @@ UMLGraph is hereby made freely available as Open Source Software.
|
|||
You can download it in source and compiled format from the following links:
|
||||
<ul>
|
||||
<li> <a href="UmlGraph.java">UmlGraph.java (source code)</a>
|
||||
<li> <a href="UmlGraph.class">UmlGraph.class (compiled)</a>
|
||||
<li> <a href="makefile">Makefile (GNU make)</a>
|
||||
<li> <a href="UmlGraph.jar">UmlGraph.jar (compiled archive)</a>
|
||||
<li> <a href="makefile">Makefile example (GNU make)</a>
|
||||
</ul>
|
||||
|
||||
<h3>Version History</h3> <!-- {{{1 -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue