mirror of https://github.com/dspinellis/UMLGraph
30 lines
2.0 KiB
Plaintext
30 lines
2.0 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
|
|
c120 [label="{InvoiceItem\n|product\lquantity\l|}", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=16.0];
|
|
// gr.spinellis.invoice.Invoice
|
|
c121 [label="{Invoice\n|total\litems\lcustomer\l|}", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=16.0];
|
|
// gr.spinellis.invoice.Customer
|
|
c122 [label="{Customer\n|name\l|}", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=16.0];
|
|
// gr.spinellis.product.Product
|
|
c123 [label="{Product\n|name\lstock\lprice\lcategory\l|}", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=16.0];
|
|
// gr.spinellis.product.Category
|
|
c124 [label="{Category\n|name\lproducts\l|}", fontname="Helvetica", style=filled, fillcolor="yellow", fontcolor="black", fontsize=16.0];
|
|
// gr.spinellis.invoice.InvoiceItem assoc gr.spinellis.product.Product
|
|
c120 -> c123 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
// gr.spinellis.invoice.Invoice assoc gr.spinellis.invoice.Customer
|
|
c121 -> c122 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
// gr.spinellis.invoice.Invoice composed gr.spinellis.invoice.InvoiceItem
|
|
c121 -> c120 [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
|
|
c123 -> c124 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
}
|
|
|