Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HARMONY-experimental-branch
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robin Korfmann
HARMONY-experimental-branch
Commits
88bf7aae
Commit
88bf7aae
authored
2 weeks ago
by
Elenia Fischer
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
b7393bab
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Klassendiagramm.puml
+82
-0
82 additions, 0 deletions
Klassendiagramm.puml
with
82 additions
and
0 deletions
Klassendiagramm.puml
0 → 100644
+
82
−
0
View file @
88bf7aae
@startuml
title Relationships - Class Diagram
enum RequirementState{
Identified
Documented
Validated
Realized
Archived
Deleted
}
class Requirement {
+ UUID Id
+ String Title
+ RequirementState State
+ String Type
+ String FullText
+ void validate()
+ void getRequirementStatus()
+ void save()
+ void ceateRequirement()
+ String getFullText()
+ Requirement cloneRequirement()
}
class Project {
+ UUID Id
+ String Name
+ String Description
+ Date StartDate
+ Date EndDate
+ void getId()
+ String getName()
+ void setName(String name)
+ String getDescription()
+ void setDescrption(String description)
+ UUID gengerateProjectID()
+ void save()
+ void close()
+ void deleteRequirement()
+ void addRequirement()
+ void findRequirement()
+ void getRequirementStatus(int requirement)
+ void validateRequirement(int requirement)
+ void load()
+ void delete()
+ void archiev()
+ void editRequirement(int requirement)
+ List<Requirement> listRequirement()
+ Requirement createRequirement(String title, String status)
+ void export()
+void getOverview()
}
class ProjectManager {
+ void deleteProject(int id)
+ void showProjects()
+ void searchProject()
+ void editProject(int id)
+ void createProject()
+ void loadProject(int pid)
}
class TeamMember {
}
Project "1" o-down- "0..*" Requirement: Aggregation
Project "0..*" -down- "1" ProjectManager: Aggregation
Project "0..*" -down- "1" TeamMember: Aggregation
ProjectManager "1" o-down- "0..*" TeamMember: Aggregation
@enduml
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment