Note "blah" as notename / classname .. notename (as documented) does not work

0 votes
asked Apr 18, 2013 in Bug by mnjones (160 points)

The documentation suggests that either:

note "note text" as notename

classname .. notename

or

note as notename

  note text

end note

classname .. notename

should produce a note attached to classname, however they produce a free-floating note with class "classname" linked to a second class named "notename".

(Tested with 7963)

1 Answer

0 votes
answered Apr 18, 2013 by plantuml (295,000 points)

Hello,
Not sure to understand the issue:

@startuml
note "note text" as notename
classname .. notename
@enduml

This seems to work fine on 7963 : http://www.plantuml.com/plantuml/img/oyilILLGoWEH9QaL9KeAYSKA85vUOcugBrToJc9nCOYfeAS75mO0

Do I miss something ?

commented Apr 18, 2013 by mnjones (160 points)
Ah. Looks like it's in a namespace:

@startuml temp.png
namespace testNS {
note as N1
   test
end note

test .. N1
}
@enduml
commented Apr 19, 2013 by plantuml (295,000 points)
Thanks for the report. This should work with this version:

http://dl.dropbox.com/u/13064071/plantuml.jar

Feel free to report other issue on the topic.
...