the "together" keyword does not work with namespaces

0 votes
asked Dec 26, 2019 in Bug by beroal (120 points)

I want to improve layout of my class diagram with the "together" keyword, but it does not group classes. If I use fully qualified class names (which should create namespaces according to the documentation), like in the following "puml" file, then "together" does not group classes visually.

@startuml
class p.A
together {
  class p.B
  class p.C
  class p.D
}
class p.E
class p.F
@enduml

If I use class names without packages, like in the following file, B, C, and D are clearly grouped.

@startuml
class A
together {
  class B
  class C
  class D
}
class E
class F
@enduml

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...