How to use the PHP namespace separator with an association

0 votes
asked Dec 11, 2016 in Bug by remy (140 points)

Hi,

First of all: I love PlantUML! Awesome work :-)

I'm currently modeling a PHP application where I have the following scenario:

@startuml
set namespaceSeparator \\
 
CardBundle\\Card "1" --> "1..*" TagBundle\\Tag
(CardBundle\\Card,TagBundle\\Tag) .. TagBundle\\CardTag
@enduml
 
Unfortunatly this resolves in an error as it seems that association is unable to work with the custom namespace separator. If I try the same scenario using the default dot separator it works:
 
@startuml
CardBundle.Card "1" --> "1..*" TagBundle.Tag
(CardBundle.Card,TagBundle.Tag) .. TagBundle.CardTag
@enduml

Is there a way to accomplish the association with the custom namespace separator or is this a bug?

Kiind regards,

Remy

1 Answer

0 votes
answered Dec 11, 2016 by plantuml (295,000 points)
Hi,

Thanks for the report. It's indeed a bug.

It should be fixed in last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Tell us if you find other issue with this custom namespace separator.

Thanks,
Arnaud
...