remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 17:12:29 +02:00
parent dba45b8098
commit 963041982e
7 changed files with 9 additions and 32 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,23 +0,0 @@
@startuml
class Form {
#elements : array|FormElement[]
+render($indent = 0 : int)
+addElement(FormElement $element)
}
abstract class FormElement {
+render($indent = 0 : int)
}
class InputElement {
+render($indent = 0 : int)
}
class TextElement {
+render($indent = 0 : int)
}
FormElement <|.. TextElement
FormElement <|.. InputElement
FormElement <|.. Form
@enduml