Namespace members not recognized when defined in together group?

0 votes
asked May 17, 2018 in Bug by Michael Steffens

The following snippet is supposed to display in total four interface/class entities in nested namespaces

@startuml

namespace Outer {

        together {
                interface One
                interface Two
        }

        namespace Inner {
                class One
                class Two
        }

}

Outer.Inner.One --|> Outer.One
Outer.Inner.Two --|> Outer.Two

@enduml

The resulting class diagram displays six boxes: While interfaces Outer.One and Outer.Two are arranged as desired, they get ignored when drawing relation lines. Instead, an extra pair of classes Outer.One and Outer. Two are added as relation targets.

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.
...