mirror of https://github.com/dspinellis/UMLGraph
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
#!/usr/local/bin/dot
|
|
#
|
|
# Class diagram
|
|
# Generated by UMLGraph version 281411 (http://www.spinellis.gr/umlgraph/)
|
|
#
|
|
|
|
digraph G {
|
|
graph [fontnames="svg"]
|
|
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10,color="black"];
|
|
node [fontname="Helvetica",fontcolor="black",fontsize=10,shape=plaintext,margin=0,width=0,height=0];
|
|
nodesep=0.25;
|
|
ranksep=0.5;
|
|
// Application
|
|
c116 [label=<<table title="Application" border="0" cellborder="1" cellspacing="0" cellpadding="2"><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="center" balign="center"> Application </td></tr></table></td></tr></table>>];
|
|
// IrpApplication
|
|
c117 [label=<<table title="IrpApplication" border="0" cellborder="1" cellspacing="0" cellpadding="2"><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="center" balign="center"> IrpApplication </td></tr></table></td></tr></table>>];
|
|
// Main
|
|
c118 [label=<<table title="Main" border="0" cellborder="1" cellspacing="0" cellpadding="2"><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="center" balign="center"> Main </td></tr></table></td></tr></table>>];
|
|
// IrpApplication extends Application
|
|
c116 -> c117 [arrowtail=empty,dir=back,weight=10];
|
|
// Main depend IrpApplication
|
|
c118 -> c117 [arrowhead=open,style=dashed,weight=0,label="«friend»"];
|
|
}
|
|
|