diff options
author | Adrien Hopkins <ahopk127@my.yorku.ca> | 2022-06-18 16:43:29 -0500 |
---|---|---|
committer | Adrien Hopkins <ahopk127@my.yorku.ca> | 2022-06-18 16:43:29 -0500 |
commit | 768468b303627c215046cd10cf9e8ba62151ac65 (patch) | |
tree | 34a83b85b67580ce0eff20c98bc32e87e579c50d /docs/diagrams/convert-units.plantuml.txt | |
parent | 58481a9a61843b1e1c12695d22d6375369a2f63f (diff) |
Added diagrams to the new design document sections
Diffstat (limited to 'docs/diagrams/convert-units.plantuml.txt')
-rw-r--r-- | docs/diagrams/convert-units.plantuml.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/diagrams/convert-units.plantuml.txt b/docs/diagrams/convert-units.plantuml.txt new file mode 100644 index 0000000..564a766 --- /dev/null +++ b/docs/diagrams/convert-units.plantuml.txt @@ -0,0 +1,19 @@ +@startuml + +actor User +participant View +participant Presenter +database UnitDatabase +participant Unit + +User -> View : Choose units & input value +View -> Presenter : Call convertUnits() +View <-- Presenter : Get user input +Presenter -> UnitDatabase : Send raw user input +Presenter <-- UnitDatabase : Return unit objects +Presenter -> Unit : Convert provided units +Presenter <-- Unit : Return converted value +View <-- Presenter : Return converted units +User <-- View : Show conversion output + +@enduml |