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
|
|
c130 [label="{InvoiceItem\n|product : Product\lquantity : int\l|}", fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
|
// gr.spinellis.invoice.Invoice
|
|
c131 [label="{Invoice\n|total : double\litems : InvoiceItem[]\lcustomer : Customer\l|addItem(p : Product, quantity : int)\l}", fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
|
// gr.spinellis.invoice.Customer
|
|
c132 [label="{Customer\n|name : String\l|}", fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
|
// gr.spinellis.product.Product
|
|
c133 [label="{Product\n|name : String\lstock : int\lprice : double\lcategory : Category\l|}", fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
|
// gr.spinellis.product.Category
|
|
c134 [label="{Category\n|name : String\lproducts : List\<\>\l|}", fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
|
// gr.spinellis.invoice.InvoiceItem assoc gr.spinellis.product.Product
|
|
c130 -> c133 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
// gr.spinellis.invoice.Invoice assoc gr.spinellis.invoice.Customer
|
|
c131 -> c132 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
// gr.spinellis.invoice.Invoice composed gr.spinellis.invoice.InvoiceItem
|
|
c131 -> c130 [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
|
|
c133 -> c134 [taillabel="*", label="", headlabel="1", fontname="Helvetica", fontcolor="black", fontsize=10.0, color="black", arrowhead=none];
|
|
}
|
|
|