-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClassDiagram.puml
237 lines (234 loc) · 7.44 KB
/
ClassDiagram.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
@startuml
!theme plain
top to bottom direction
skinparam linetype ortho
class BaseController {
+ BaseController():
- mainController: MainController
+ getMainController(): MainController
+ init(): void
+ setMainController(MainController): void
}
entity Exercise << record >> {
+ Exercise(String, int, int, int, int):
- sets: int
- repMax: int
- weight: int
- name: String
- repMin: int
+ repMax(): int
+ weight(): int
+ repMin(): int
+ name(): String
+ sets(): int
}
class ExerciseViewController {
+ ExerciseViewController():
- sets: TextField
- list: ListView<String>
- repMin: TextField
- repMax: TextField
- cancelButton: Button
- name: Text
- weight: TextField
- cancel(): void
+ init(): void
- finish(): void
- addExercise(): void
+ initialize(): void
- clearInputFields(): void
}
class FxmlControllerPair {
+ FxmlControllerPair(MainController, VBox, BaseController):
- baseController: BaseController
- fxml: VBox
+ hide(): void
+ show(): void
}
class HomeController {
+ HomeController():
- createNewWorkout(): void
- showAllWorkouts(): void
+ init(): void
}
class MainController {
+ MainController():
- exerciseView: VBox
- overviewController: OverviewController
- workoutViewController: WorkoutViewController
- home: VBox
- workoutView: VBox
- exerciseViewController: ExerciseViewController
- useRemote: boolean
- overview: VBox
- homeController: HomeController
- fxmlControllerMap: Map<String, FxmlControllerPair>
- user: UserAccess
- currentFxmlName: String
+ showFxml(String): void
- initialize(): void
+ getUser(): UserAccess
}
class OverviewController {
+ OverviewController():
- name: Text
- workoutInfoBox: HBox
- inputName: TextField
- scrollPane: ScrollPane
- FONT_FAMILY: String
- CONTENTSPACING: int
- FONTSIZE: int
- saveWorkoutNameBox: VBox
- CONTENTMARGINBOTTOM: int
- CONTENTMARGINLEFT: int
+ init(): void
- buildGrid(): void
+ cancel(): void
- addExercises(): void
- delete(int): void
- createCell(int): VBox
- returnWorkoutView(): void
- move(int, boolean): void
+ save(): void
}
class RemoteUserAccess {
+ RemoteUserAccess(URI):
- objectMapper: ObjectMapper
- baseUri: URI
- OK_RESPONSE_CODE: int
- LOGGER: Logger
- httpPutRequest(String): HttpURLConnection
+ getCurrentWorkoutSaved(): boolean
+ setCurrentWorkout(int): void
- handleError(HttpURLConnection): void
+ saveCurrentWorkout(String, String): void
+ removeExerciseFromCurrentWorkout(int): void
+ deleteUnsavedWorkouts(): void
+ moveExerciseInCurrentWorkout(int, boolean): void
+ removeWorkout(int): void
- httpGetRequest(String): Reader
+ getCurrentWorkoutExerciseCount(): int
+ getCurrentWorkoutName(): String
+ getExerciseList(): List<String>
+ getWorkoutDates(): List<String>
- httpDeleteRequest(String): HttpURLConnection
+ removeCurrentWorkout(): void
+ getCurrentWorkoutExerciseAttribute(int, String): String
+ getWorkoutNames(): List<String>
+ addExerciseToCurrentWorkout(String, int, int, int, int): void
}
class User {
+ User(boolean):
- currentWorkoutIndex: int
- workouts: List<Workout>
- LOGGER: Logger
- persistence: boolean
+ getCurrentWorkoutExerciseCount(): int
+ getCurrentWorkoutSaved(): boolean
+ removeCurrentWorkout(): void
+ getWorkoutNames(): List<String>
+ deleteUnsavedWorkouts(): void
+ getCurrentWorkoutExerciseAttribute(int, String): String
+ removeExerciseFromCurrentWorkout(int): void
+ moveExerciseInCurrentWorkout(int, boolean): void
+ saveCurrentWorkout(String, String): void
+ getExerciseList(): List<String>
+ addExerciseToCurrentWorkout(String, int, int, int, int): void
+ getCurrentWorkoutName(): String
+ setCurrentWorkout(int): void
+ getWorkoutDates(): List<String>
+ removeWorkout(int): void
}
interface UserAccess << interface >> {
+ moveExerciseInCurrentWorkout(int, boolean): void
+ deleteUnsavedWorkouts(): void
+ getCurrentWorkoutName(): String
+ addExerciseToCurrentWorkout(String, int, int, int, int): void
+ removeCurrentWorkout(): void
+ getCurrentWorkoutExerciseCount(): int
+ getWorkoutDates(): List<String>
+ removeExerciseFromCurrentWorkout(int): void
+ getWorkoutNames(): List<String>
+ removeWorkout(int): void
+ saveCurrentWorkout(String, String): void
+ getExerciseList(): List<String>
+ getCurrentWorkoutSaved(): boolean
+ setCurrentWorkout(int): void
+ getCurrentWorkoutExerciseAttribute(int, String): String
}
class UserController {
+ UserController():
- user: User
- LOGGER: Logger
# WORKOUTPLANNER_SERVICE_PATH: String
- objectMapper: ObjectMapper
- logObjects: boolean
+ getWorkoutNames(): List<String>
+ deleteUnsavedWorkouts(): ResponseEntity<String>
+ getCurrentWorkoutExercise(int, String): String
+ getExerciseList(): List<String>
+ setCurrentWorkout(int): ResponseEntity<String>
+ getWorkoutDates(): List<String>
+ addExerciseToCurrentWorkout(String, int, int, int, int): ResponseEntity<String>
- logEndpoint(String, Object): void
+ removeExerciseFromCurrentWorkout(int): ResponseEntity<String>
+ getCurrentWorkoutSaved(): boolean
+ removeCurrentWorkout(): ResponseEntity<String>
+ getCurrentWorkoutExerciseCount(): int
+ moveExerciseInCurrentWorkout(int, boolean): ResponseEntity<String>
+ removeWorkout(int): ResponseEntity<String>
+ saveCurrentWorkout(String, String): ResponseEntity<String>
+ getCurrentWorkoutName(): String
- logEndpoint(String): void
}
class Workout {
+ Workout():
- name: String
- saved: boolean
- exercises: List<Exercise>
- date: String
+ moveExercise(int, boolean): void
+ setSaved(boolean): void
+ removeExercise(int): void
+ setName(String): void
+ getSaved(): boolean
+ addExercise(String, int, int, int, int): void
+ getName(): String
+ setDate(String): void
+ getDate(): String
+ getExercises(): List<Exercise>
}
class WorkoutViewController {
+ WorkoutViewController():
- workoutNames: List<String>
- LAYOUTY: int
- SPACING: int
- workoutDates: List<String>
- FONT_FAMILY: String
- scrollPane: ScrollPane
- FONTSIZE: int
- BUTTONLAYOUTY: double
- createCell(int): VBox
- view(int): void
- delete(int): void
- returnHome(): void
+ init(): void
}
BaseController "1" *-[#595959,plain]-> "mainController\n1" MainController
ExerciseViewController -[#000082,plain]-^ BaseController
FxmlControllerPair "1" *-[#595959,plain]-> "baseController\n1" BaseController
HomeController -[#000082,plain]-^ BaseController
MainController "1" *-[#595959,plain]-> "exerciseViewController\n1" ExerciseViewController
MainController "1" *-[#595959,plain]-> "fxmlControllerMap\n*" FxmlControllerPair
MainController "1" *-[#595959,plain]-> "homeController\n1" HomeController
MainController "1" *-[#595959,plain]-> "overviewController\n1" OverviewController
MainController "1" *-[#595959,plain]-> "user\n1" UserAccess
MainController "1" *-[#595959,plain]-> "workoutViewController\n1" WorkoutViewController
OverviewController -[#000082,plain]-^ BaseController
RemoteUserAccess -[#008200,dashed]-^ UserAccess
User -[#008200,dashed]-^ UserAccess
User "1" *-[#595959,plain]-> "workouts\n*" Workout
UserController "1" *-[#595959,plain]-> "user\n1" User
Workout "1" *-[#595959,plain]-> "exercises\n*" Exercise
WorkoutViewController -[#000082,plain]-^ BaseController
@enduml