Difference between revisions of "Plantuml"

From BITPlan Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
[[File:Plantuml logo.png|link=https://plantuml.com/|plantuml]][https://plantuml.com/ plantuml]
 
= Links =
 
= Links =
* [[File:Plantuml logo.png|link=https://plantuml.com/|plantuml]][https://plantuml.com/ plantuml]
 
 
* {{Link|target=Diagrams}}
 
* {{Link|target=Diagrams}}
 +
* {{Link|target=UML}}
 +
 
= Stackoverflow questions =
 
= 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? ==

Revision as of 09:33, 18 February 2020

plantumlplantuml

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.

rendered