Ajouts des bons diagrammes de classe

This commit is contained in:
2024-12-11 09:53:12 +01:00
parent be5b9bf20e
commit 58e0e56a9e
21 changed files with 1936 additions and 655 deletions

View File

@@ -1,16 +1,18 @@
@startuml
class fr.monkhanny.dorfromantik.components.Title {
+ <<Create>> Title(String,float)
+ <<Create>> Title(String,float,Color)
+ void updateTitleFont(float)
@startuml components
!theme plain
top to bottom direction
skinparam linetype ortho
class Button {
+ Button():
+ createCustomIconButton(String): JButton
+ createCustomTextButton(String, float): JButton
}
class Title {
+ Title(String, float):
+ Title(String, float, Color):
+ updateTitleFont(float): void
}
class fr.monkhanny.dorfromantik.components.Button {
+ {static} JButton createCustomTextButton(String,float)
+ {static} JButton createCustomIconButton(String)
}
fr.monkhanny.dorfromantik.components.JLabel <|-- fr.monkhanny.dorfromantik.components.Title
@enduml
@enduml