Qualified associations with left to right direction

+4 votes
asked Sep 18 in Bug by Stephen (220 points)

Hello,

Using left to right direction in a class diagram with qualified associations gives "chaotic" result.
Example:

@startuml TestQualifiedAssociations
left to right direction
class A {
}
class B {
}

A [qualifier 1] --> B
A [qualifier 2] --> B
A [qualifier 3] --> B
A [qualifier 4] --> B
@enduml

1 Answer

0 votes
answered Oct 20 by anonymous

In addition, `left to right direction` reverses the "note" position on packages: notes placed as bottom, goes on top of the package. and viceversa.

@startuml
left to right direction
package PACK1  {
  usecase TEST1
}
usecase TEST2
note bottom of PACK1
   A note bottom of PACK1.
endnote
note bottom of TEST2
   A note bottom of TEST2.
endnote
@enduml
...