Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix UML diagram #344

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/diagrams/SessionClassUML.puml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ skinparam classAttributeIconSize 0

Class Session {
+ getSessionNumber(): SessionNumber
+ getStudents(): SessionStudents
+ getStudents(): StudentSet
+ getSessionRemark(): SessionRemark
+ isSameSession(Session): boolean
+ getSessionInfo(): String
Expand All @@ -23,7 +23,7 @@ Class StudentSet {
+ <u>VALIDATION_REGEX: String
+ addStudent(Person)
+ removeStudent(Person)
+ getStudents(): SessionStudents
+ getStudents(): StudentSet
+ toStudentNames(): String
+ contains(Person): boolean
}
Expand All @@ -39,7 +39,7 @@ Class Person {
}

Session *-- "1" SessionNumber: sessionNumber
Session *-- "1" StudentSet: sessionStudents
Session *-- "1" StudentSet: students
Session *-- "1" SessionRemark: sessionRemark
StudentSet o-- "*" Person: contains

Expand Down
Binary file modified docs/images/SessionClassUML.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading