first
This commit is contained in:
37
plantUML/exemples/DC.plantuml
Normal file
37
plantUML/exemples/DC.plantuml
Normal file
@@ -0,0 +1,37 @@
|
||||
@startuml
|
||||
scale 1.5
|
||||
|
||||
together {
|
||||
class "Station"
|
||||
class "Liaison"
|
||||
}
|
||||
|
||||
class "Ligne"
|
||||
|
||||
together {
|
||||
abstract class "Parcours"
|
||||
class "Parcours Simple"
|
||||
class "Parcours Complexe"
|
||||
}
|
||||
|
||||
Station "1\n-debut" <-- Liaison
|
||||
Station "1\n-fin" <-- Liaison
|
||||
Ligne <-- Liaison
|
||||
|
||||
Ligne *-- Liaison
|
||||
|
||||
Station "1\n-debut" <-- Parcours
|
||||
Station "1\n-fin" <-- Parcours
|
||||
|
||||
Parcours <|-- "Parcours Simple"
|
||||
Ligne <-- "Parcours Simple"
|
||||
Liaison --* "Parcours Simple"
|
||||
note right on link #blue
|
||||
Liaisons de la meme ligne
|
||||
qui se suivent
|
||||
end note
|
||||
|
||||
Parcours <|-- "Parcours Complexe"
|
||||
"Parcours Simple" --* "Parcours Complexe"
|
||||
|
||||
@enduml
|
||||
7
plantUML/exemples/DC.plantuml~
Normal file
7
plantUML/exemples/DC.plantuml~
Normal file
@@ -0,0 +1,7 @@
|
||||
@startuml
|
||||
class Station
|
||||
|
||||
class Liaison ---> "customer\n1" Station
|
||||
|
||||
|
||||
@enduml
|
||||
58
plantUML/exemples/DC.svg
Normal file
58
plantUML/exemples/DC.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 14 KiB |
46
plantUML/exemples/DCPosition.plantuml
Normal file
46
plantUML/exemples/DCPosition.plantuml
Normal file
@@ -0,0 +1,46 @@
|
||||
@startuml
|
||||
scale 1.5
|
||||
|
||||
together {
|
||||
class "Station"
|
||||
class "Liaison"
|
||||
class "Ligne"
|
||||
}
|
||||
|
||||
|
||||
together {
|
||||
abstract class "Parcours"
|
||||
class "Parcours Simple"
|
||||
class "Parcours Complexe"
|
||||
}
|
||||
|
||||
Station "1\n-debut" <-down- Liaison
|
||||
Station "1\n-fin" <-down- Liaison
|
||||
Ligne <-- Liaison
|
||||
|
||||
Ligne *-- Liaison
|
||||
|
||||
Station "1\n-debut" <-left- Parcours
|
||||
Station "1\n-fin" <-left- Parcours
|
||||
|
||||
Parcours <|-up- "Parcours Simple"
|
||||
|
||||
Ligne <-- "Parcours Simple"
|
||||
|
||||
Liaison -left-* "Parcours Simple"
|
||||
note on link #blue
|
||||
Liaisons de la meme ligne
|
||||
qui se suivent
|
||||
end note
|
||||
|
||||
|
||||
Parcours <|-up- "Parcours Complexe"
|
||||
"Parcours Simple" --* "Parcours Complexe"
|
||||
note on link #blue
|
||||
Parcours simples
|
||||
qui se suivent
|
||||
end note
|
||||
|
||||
|
||||
|
||||
@enduml
|
||||
37
plantUML/exemples/DCPosition.plantuml~
Normal file
37
plantUML/exemples/DCPosition.plantuml~
Normal file
@@ -0,0 +1,37 @@
|
||||
@startuml
|
||||
scale 1.5
|
||||
|
||||
together {
|
||||
class "Station"
|
||||
class "Liaison"
|
||||
}
|
||||
|
||||
class "Ligne"
|
||||
|
||||
together {
|
||||
abstract class "Parcours"
|
||||
class "Parcours Simple"
|
||||
class "Parcours Complexe"
|
||||
}
|
||||
|
||||
Station "1\n-debut" <-- Liaison
|
||||
Station "1\n-fin" <-- Liaison
|
||||
Ligne <-- Liaison
|
||||
|
||||
Ligne *-- Liaison
|
||||
|
||||
Station "1\n-debut" <-- Parcours
|
||||
Station "1\n-fin" <-- Parcours
|
||||
|
||||
Parcours <|-- "Parcours Simple"
|
||||
Ligne <-- "Parcours Simple"
|
||||
Liaison --* "Parcours Simple"
|
||||
note right on link #blue
|
||||
Liaisons de la meme ligne
|
||||
qui se suivent
|
||||
end note
|
||||
|
||||
Parcours <|-- "Parcours Complexe"
|
||||
"Parcours Simple" --* "Parcours Complexe"
|
||||
|
||||
@enduml
|
||||
75
plantUML/exemples/DCPosition.svg
Normal file
75
plantUML/exemples/DCPosition.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 16 KiB |
41
plantUML/exemples/DCU.plantUML
Normal file
41
plantUML/exemples/DCU.plantUML
Normal file
@@ -0,0 +1,41 @@
|
||||
@startuml
|
||||
scale 1.5
|
||||
|
||||
' anything after a quote is ignored (a comment).
|
||||
|
||||
/' anything between slash quote over several lines
|
||||
potentially is also ignored '/
|
||||
|
||||
/' you can try to uncomment the following line to
|
||||
see what happens'/
|
||||
|
||||
' left to right direction
|
||||
|
||||
' list the actors
|
||||
|
||||
actor "Librarian" as lib
|
||||
actor "Head Librarian" as adlib
|
||||
actor "unauthentified" as other
|
||||
|
||||
' list the usecase
|
||||
|
||||
rectangle OldFashionLibrary {
|
||||
usecase "Deal with members" as UC1
|
||||
usecase "Deal with books" as UC2
|
||||
usecase "Log out" as UC3
|
||||
usecase "Log in" as UC4
|
||||
usecase "Deal with litigation" as UC5
|
||||
|
||||
}
|
||||
|
||||
' describe the arrows
|
||||
|
||||
lib -- UC1
|
||||
lib -- UC2
|
||||
lib -- UC3
|
||||
other -- UC4
|
||||
adlib -- UC5
|
||||
|
||||
lib <|-- adlib
|
||||
|
||||
@enduml
|
||||
1
plantUML/exemples/DCU.svg
Normal file
1
plantUML/exemples/DCU.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 6.6 KiB |
Reference in New Issue
Block a user