Skip to content

Commit 03c24b2

Browse files
committed
fixed #379 Error Controller is broken
1 parent 67c54f2 commit 03c24b2

16 files changed

+64
-10
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
@startuml
2+
'https://plantuml.com/class-diagram
3+
4+
abstract class AbstractList
5+
abstract AbstractCollection
6+
interface List
7+
interface Collection
8+
9+
List <|-- AbstractList
10+
Collection <|-- AbstractCollection
11+
12+
Collection <|- List
13+
AbstractCollection <|- AbstractList
14+
AbstractList <|-- ArrayList
15+
16+
class ArrayList {
17+
Object[] elementData
18+
size()
19+
}
20+
21+
enum TimeUnit {
22+
DAYS
23+
HOURS
24+
MINUTES
25+
}
26+
27+
@enduml
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
@startuml
2+
'https://plantuml.com/class-diagram
3+
4+
abstract class AbstractList
5+
abstract AbstractCollection
6+
interface List
7+
interface Collection
8+
9+
List <|-- AbstractList
10+
Collection <|-- AbstractCollection
11+
12+
Collection <|- List
13+
AbstractCollection <|- AbstractList
14+
AbstractList <|-- ArrayList
15+
16+
class ArrayList {
17+
Object[] elementData
18+
size()
19+
}
20+
21+
enum TimeUnit {
22+
DAYS
23+
HOURS
24+
MINUTES
25+
}
26+
27+
@enduml

src/main/plantuml/Simpleworklist__Use_Cases__001__Start.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
title Functional_Requirements - Simpleworklist Use Case Diagram
3+
title Functional Requirements 001 - Start
44

55
left to right direction
66
'top to bottom direction

src/main/plantuml/Simpleworklist__Use_Cases__002__Show_TaskstateTab.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
title Functional_Requirements - Simpleworklist Use Case Diagram
3+
title Functional Requirements 002 - Show TaskstateTab
44

55
left to right direction
66
'top to bottom direction

src/main/plantuml/Simpleworklist__Use_Cases__003__TaskstateTab.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
title Functional_Requirements - Simpleworklist Use Case Diagram
3+
title Functional Requirements 003 - TaskstateTab
44

55
left to right direction
66
'top to bottom direction

src/main/plantuml/Simpleworklist__Use_Cases__004__Project_Root.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
title Functional_Requirements - Simpleworklist Use Case Diagram
3+
title Functional Requirements 004 - Project/Root
44

55
left to right direction
66
'top to bottom direction

src/main/plantuml/Simpleworklist__Use_Cases__005__Project_id.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
title Functional_Requirements - Simpleworklist Use Case Diagram
3+
title Functional Requirements 005 - Project/Id
44

55
left to right direction
66
'top to bottom direction

0 commit comments

Comments
 (0)