mirror of https://github.com/dspinellis/UMLGraph
34 lines
2.3 KiB
Plaintext
34 lines
2.3 KiB
Plaintext
#!/usr/local/bin/dot
|
||
#
|
||
# Class diagram
|
||
# Generated by UmlGraph version 4.1 (http://www.spinellis.gr/sw/umlgraph)
|
||
#
|
||
|
||
digraph G {
|
||
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
|
||
node [fontname="Helvetica",fontsize=10,shape=record];
|
||
// gr.spinellis.invoice.InvoiceItem
|
||
c0 [label="InvoiceItem", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=10.0];
|
||
// gr.spinellis.invoice.Invoice
|
||
c1 [label="Invoice", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=10.0];
|
||
// gr.spinellis.invoice.Customer
|
||
c2 [label="Customer", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=10.0];
|
||
// gr.spinellis.product.Product
|
||
c3 [label="Product", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=10.0];
|
||
// gr.spinellis.product.Category
|
||
c4 [label="Category", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=10.0];
|
||
// gr.spinellis.invoice.InvoiceItem assoc gr.spinellis.product.Product
|
||
c0 -> c3 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
||
// gr.spinellis.invoice.Invoice assoc gr.spinellis.invoice.Customer
|
||
c1 -> c2 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
||
// gr.spinellis.invoice.Invoice composed gr.spinellis.invoice.InvoiceItem
|
||
c1 -> c0 [taillabel="1", label="", headlabel="*", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none, arrowtail=diamond];
|
||
// gr.spinellis.product.Product assoc gr.spinellis.product.Category
|
||
c3 -> c4 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
||
// gr.spinellis.product.Category depend java.util.List
|
||
c4 -> c10 [taillabel="", label="", headlabel="", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=open, style=dashed];
|
||
// java.util.List<E>
|
||
c10 [label="<22>interface<63> \nList\<E\>", fontname="Helvetica-Oblique", style=filled, fillcolor="gray", fontcolor="black", fontsize=10.0, URL="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html"];
|
||
}
|
||
|