# Klassendiagramm ```plantuml @startuml ' Quelle: https://oer-informatik.gitlab.io/uml/umlklasse/plantuml/umlclass.cfg ' Aufruf über ' !include https://hackmd.io/N9tcamRTQ46jhVv-FIo1lg\download hide circle skinparam classAttributeIconSize 0 skinparam DefaultFontName "Lucida Sans Typewriter" skinparam Class{ BorderColor DarkSlateBlue BackgroundColor whitesmoke 'Verhaltensmuster grün #CBFF9A 'Erzeugungsmuster blau #99DCFF 'Strukturmuster rosa ##F9BD97 } skinparam Interface{ BorderColor DarkSlateBlue BackgroundColor whitesmoke } skinparam Note{ BorderColor DarkSlateBlue BackgroundColor LightYellow } skinparam ArrowColor DarkSlateBlue skinparam FooterFontColor Lavender skinparam FooterFontSize 8 center footer CC 0 Rico Meiner 'Optionen: 'left to right direction 'skinparam lineType ortho 'skinparam lineType polyline ' Add spacing horizontal and vertical ' skinparam nodesep 50 ' skinparam ranksep 50 ' A Package just to group members skinparam package<<invisible>> { borderColor Transparent backgroundColor Transparent fontColor Transparent stereotypeFontColor Transparent } ' Schatten deaktivieren ' skinparam shadowing false class Test { - test: int + getTest(): int } @enduml ```