From 5d98ee8f6e0c1ef01a78c0166cc4cdc11e3e9995 Mon Sep 17 00:00:00 2001 From: lzq Date: Thu, 27 Jul 2023 13:51:27 +0800 Subject: [PATCH] Remove unused PlantUML diagrams PlantUML diagrams in doc/diagrams/plantuml are not used in the project. The rendered image of this code are being used in SE-EDU's plantUml tutorial (https://se-education.org/guides/tutorials/plantUml.html). As these images are not part of AB3, let's remove these diagrams. --- docs/diagrams/plantuml/AbeforeC.puml | 11 ------- docs/diagrams/plantuml/AllDown.puml | 25 ---------------- docs/diagrams/plantuml/ArrowLength.puml | 27 ----------------- docs/diagrams/plantuml/CbeforeA.puml | 11 ------- docs/diagrams/plantuml/HiddenArrows.puml | 30 ------------------- .../plantuml/PackagesAndConsistency.puml | 14 --------- docs/diagrams/plantuml/UpAndDown.puml | 29 ------------------ 7 files changed, 147 deletions(-) delete mode 100644 docs/diagrams/plantuml/AbeforeC.puml delete mode 100644 docs/diagrams/plantuml/AllDown.puml delete mode 100644 docs/diagrams/plantuml/ArrowLength.puml delete mode 100644 docs/diagrams/plantuml/CbeforeA.puml delete mode 100644 docs/diagrams/plantuml/HiddenArrows.puml delete mode 100644 docs/diagrams/plantuml/PackagesAndConsistency.puml delete mode 100644 docs/diagrams/plantuml/UpAndDown.puml diff --git a/docs/diagrams/plantuml/AbeforeC.puml b/docs/diagrams/plantuml/AbeforeC.puml deleted file mode 100644 index b4c86d69e..000000000 --- a/docs/diagrams/plantuml/AbeforeC.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml -!include ../style.puml - -Class A LOGIC_COLOR_T3 -Class B LOGIC_COLOR_T3 -Class C UI_COLOR_T3 -Class D UI_COLOR_T3 - -A --> B -C --> D -@enduml diff --git a/docs/diagrams/plantuml/AllDown.puml b/docs/diagrams/plantuml/AllDown.puml deleted file mode 100644 index 6eaf1c8bb..000000000 --- a/docs/diagrams/plantuml/AllDown.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ../style.puml - -Class A LOGIC_COLOR_T3 -Class B LOGIC_COLOR_T3 -Class C LOGIC_COLOR_T3 -Class D LOGIC_COLOR_T3 - -Class 1 MODEL_COLOR_T3 -Class 2 MODEL_COLOR_T3 -Class 3 MODEL_COLOR_T3 -Class 4 MODEL_COLOR_T3 - -Class Z UI_COLOR_T3 - -A --> Z -B --> Z -C --> Z -D --> Z - -A --> 1 -B --> 2 -C --> 3 -D --> 4 -@enduml diff --git a/docs/diagrams/plantuml/ArrowLength.puml b/docs/diagrams/plantuml/ArrowLength.puml deleted file mode 100644 index 99c5abfe0..000000000 --- a/docs/diagrams/plantuml/ArrowLength.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ../style.puml - -Package "Short\n->" { -Class A LOGIC_COLOR_T1 -Class B LOGIC_COLOR_T1 -A -> B -} - -Package "Long\n-->" { -Class C LOGIC_COLOR_T2 -Class D LOGIC_COLOR_T2 -C --> D -} - -Package "Longer\n--->" { -Class E LOGIC_COLOR_T3 -Class F LOGIC_COLOR_T3 -E ---> F -} - -Package "Even Longer\n---->" { -Class G LOGIC_COLOR_T4 -Class H LOGIC_COLOR_T4 -G ----> H -} -@enduml diff --git a/docs/diagrams/plantuml/CbeforeA.puml b/docs/diagrams/plantuml/CbeforeA.puml deleted file mode 100644 index 87dbca3f1..000000000 --- a/docs/diagrams/plantuml/CbeforeA.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml -!include ../style.puml - -Class C UI_COLOR_T3 -Class A LOGIC_COLOR_T3 -Class B LOGIC_COLOR_T3 -Class D UI_COLOR_T3 - -A --> B -C --> D -@enduml diff --git a/docs/diagrams/plantuml/HiddenArrows.puml b/docs/diagrams/plantuml/HiddenArrows.puml deleted file mode 100644 index c17ef6e4f..000000000 --- a/docs/diagrams/plantuml/HiddenArrows.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ../style.puml - -Class A LOGIC_COLOR_T3 -Class B LOGIC_COLOR_T3 -Class C LOGIC_COLOR_T3 -Class D LOGIC_COLOR_T3 - -Class 1 MODEL_COLOR_T3 -Class 2 MODEL_COLOR_T3 -Class 3 MODEL_COLOR_T3 -Class 4 MODEL_COLOR_T3 - -Class Z UI_COLOR_T3 - -A -up-> Z -B -up-> Z -C -up-> Z -D -up-> Z - -A --> 1 -B --> 2 -C --> 3 -D --> 4 - -'Force A B C D -A -right[hidden]- B -B -right[hidden]- C -C -right[hidden]- D -@enduml diff --git a/docs/diagrams/plantuml/PackagesAndConsistency.puml b/docs/diagrams/plantuml/PackagesAndConsistency.puml deleted file mode 100644 index 6364eb5de..000000000 --- a/docs/diagrams/plantuml/PackagesAndConsistency.puml +++ /dev/null @@ -1,14 +0,0 @@ -@startuml -!include ../style.puml - -package "Rule Of Thumb"{ - Class C UI_COLOR_T3 - Class D UI_COLOR_T3 - Class A LOGIC_COLOR_T3 - Class B LOGIC_COLOR_T3 - - A --> B - C --> D -} - -@enduml diff --git a/docs/diagrams/plantuml/UpAndDown.puml b/docs/diagrams/plantuml/UpAndDown.puml deleted file mode 100644 index e7a0313ad..000000000 --- a/docs/diagrams/plantuml/UpAndDown.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ../style.puml - -Class A LOGIC_COLOR_T3 -Class B LOGIC_COLOR_T3 -Class C LOGIC_COLOR_T3 -Class D LOGIC_COLOR_T3 - -Class 1 MODEL_COLOR_T3 -Class 2 MODEL_COLOR_T3 -Class 3 MODEL_COLOR_T3 -Class 4 MODEL_COLOR_T3 - -Class Z UI_COLOR_T3 - -'default is down -A --> Z -'specify down -B -down-> Z -'shorthand for down -C -d-> Z -'arrow lengths take priority -D -down> Z - -A -up-> 1 -B -up-> 2 -C -up-> 3 -D -up-> 4 -@enduml