Difference between revisions of "Plantuml"
Jump to navigation
Jump to search
(→Links) |
|||
(One intermediate revision by the same user not shown) | |||
Line 22: | Line 22: | ||
=== rendered === | === rendered === | ||
<uml> | <uml> | ||
+ | |||
hide circle | hide circle | ||
package PlantUml { | package PlantUml { | ||
Line 31: | Line 32: | ||
Person "+employee 0..*" <-- "+employer 0..1" Company : employs | Person "+employee 0..*" <-- "+employer 0..1" Company : employs | ||
note on link: [[https://en.wiktionary.org/wiki/employ employs]] is the name of the association between the classes Person and Company. | note on link: [[https://en.wiktionary.org/wiki/employ employs]] is the name of the association between the classes Person and Company. | ||
− | |||
</uml> | </uml> |
Latest revision as of 17:42, 3 February 2021
Links
Stackoverflow questions
In PlantUML, how do I specify role names at either end of an association between two classes?
In PlantUML, how do I specify role names at either end of an association between two classes?
source code
hide circle package PlantUml { class Person { } class Company { } } Person "+employee 0..*" <-- "+employer 0..1" Company : employs note on link: [[https://en.wiktionary.org/wiki/employ employs]] is the name of the association between the classes Person and Company.