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
b7393bab
Commit
b7393bab
authored
1 month ago
by
Bibi Aysha Enaitullah
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
8b0aea27
No related branches found
No related tags found
2 merge requests
!7
Development
,
!6
Modellierung
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plantuml_export.puml
+57
-0
57 additions, 0 deletions
plantuml_export.puml
with
57 additions
and
0 deletions
plantuml_export.puml
0 → 100644
+
57
−
0
View file @
b7393bab
@startuml
title Relationships - Class Diagram
enum RequirementState{
Identified
Documented
Validated
Realized
Archived
Deleted
}
class Requirement {
+ UUID Id
+ String Title
+ RequirementState State
+ String Type
+ void Validate()
}
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)
}
Project "1" o-down- "0..*" Requirement: 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