Issues related to qualified association

0 votes
asked Jul 11, 2024 in Bug by TT (160 points)

I appreciate your useful tool PlantUML. I would like to share issues regarding the qualified association.


Case 1:

@startuml
Foo [int] --> Bar
Bar [int] --> Foo
@enduml

PlantUML diagram


Case 2:

@startuml
Foo [int] --> Bar
Bar ---> Foo
@enduml

PlantUML diagram


Case 3:

@startuml
Foo [int] o--> Bar
Foo [int] o--> Baz
@enduml

PlantUML diagram

1 Answer

0 votes
answered Mar 12 by dickmaley (4,120 points)
Thank you very much, but please describe the issue.  It is not clear what your issue is.
commented Mar 12 by anonymous
Thank you for your consideration. The issue can be described as follows:

Case 1: The qualifier is drawn inside the class rectangle.

Case 2: The arrowhead is hidden by the qualifier.

Case 3: The diamond shape is not connected to the arrow.
...