Notes in Activity Diagrams

+1 vote
asked Oct 27, 2016 in Bug by FatherJAM (140 points)

Notes on 'if' does not work.

Notes on 'end' not displayed:

@startuml
start
note
    note on start
    **works fine**
end note
    if () then (end)
    note
        note on if
        **(Possible to point to to diamond?)**
    end note
    end
    note
        note on end
        **MISSING in Diagram!**
    end note
else (stop)
    stop
    note
        note on stop
        **works fine**
    end note
endif
@enduml


Using two note on start, no note points to the start.

Second note should be point to first note:
@startuml
start
note
    first note on start
    **should point to start**
end note
note
    second note on start
    **should point to first note**
end note
stop
@enduml


 

1 Answer

0 votes
answered Oct 28, 2016 by plantuml (294,960 points)
Thanks for the report.

In last beta, we have fixed the MISSING note on "end" issue:

https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

The two other reports are another story, we're still thinking about it.

Thanks again,
commented Nov 8, 2016 by FatherJAM (140 points)
Works fine, thank you.

The second one:
@startuml
start
note
    first note on start
    **should point to start**
end note
note
    second note on start
    **should point to first note**
end note
stop
@enduml
is in my opinion not a new story but a bug. Perhaps note on note is a new feature, but that no note is pointed to 'start' is a bug ...

Best Regards.
...