Test: Unterschied zwischen den Versionen

537 Bytes hinzugefügt ,  14:42, 24. Jun. 2018
Keine Bearbeitungszusammenfassung
Zeile 30: Zeile 30:
== UML ==
== UML ==


<uml>
<graphviz>
Alice -> Bob: Authentication Request
digraph G {
Bob --> Alice: Authentication Response
        fontname = "Bitstream Vera Sans"
Alice -> Bob: Come on over
        fontsize = 8
</uml>


<uml>
        node [
class Foo {
                fontname = "Bitstream Vera Sans"
}
                fontsize = 8
                shape = "record"
        ]
 
        edge [
                fontname = "Bitstream Vera Sans"
                fontsize = 8
        ]
 
        Animal [
                label = "{Animal|+ name : string\l+ age : int\l|+ die() : void\l}"
        ]
        Dog [
                label = "{Dog||+ bark() : void\l}"
        ]
        Cat [
                label = "{Cat||+ meow() : void\l}"
        ]
        edge [
                arrowhead = "empty"
        ]


class Bar extends Foo {
        Dog -> Animal
        Cat -> Animal
}
}
</uml>
</graphviz>


<hr>
<hr>
== Quiz ==
== Quiz ==