-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsysml_diagrams.uml
48 lines (37 loc) · 1.34 KB
/
sysml_diagrams.uml
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
@startuml
skinparam defaultFontName "DejaVu Sans Mono"
skinparam backgroundColor transparent
skinparam defaultTextAlignment center
rectangle "//SysML//\n//Diagram//" as diagram
rectangle "//Behavior//\n//Diagram//" as behavior
rectangle "Activity\nDiagram" as activity
rectangle "Sequence\nDiagram" as sequence
rectangle "State machine\nDiagram" as state
rectangle "Use case\nDiagram" as usecase
rectangle "Requirement\nDiagram" as requirement
rectangle "//Structure//\n//Diagram//" as structure
rectangle "Block Definition\nDiagram" as bdd
rectangle "Internal Block\nDiagram" as ibd
rectangle "Parametric\nDiagram" as param
rectangle "Package\nDiagram" as package
note bottom of activity: Modifica UML2\nActivity diagram\nEn el curso
note bottom of sequence: UML2\nEn el curso
note bottom of state: UML2\nEn el curso
note bottom of usecase: UML2\nEn el curso
note bottom of requirement: NEW
note bottom of bdd: Modifica UML2\nClass diagram\nEn el curso
note bottom of ibd: Modifica UML2\nComposite diagram\nEn el curso\n(Semántica similar a\nla de Class Diagram)
note bottom of package: UML2
note bottom of param: NEW
diagram <|-- behavior
behavior <|-- activity
behavior <|-- sequence
behavior <|-- state
behavior <|-- usecase
diagram <|-- requirement
diagram <|-- structure
structure <|-- bdd
structure <|-- ibd
structure <|-- package
ibd <|-- param
@enduml