Activity Beta - labelling an arrow that enters a partition, label is never shown - Bug?

0 votes
asked Feb 10, 2015 in Bug by anonymous
Example below. The label "image" never appears. Tried a few other positions for the command, either side of the partition command, and I think also exiting the partition.

Version: PlantUML version 8019 (Mon Feb 02 17:36:46 GMT 2015)
(GPL source distribution)
Java(TM) SE Runtime Environment
Java HotSpot(TM) 64-Bit Server VM
1.8.0_31-b13
Windows 7

The environment variable GRAPHVIZ_DOT has not been set
Dot executable is c:\Program Files (x86)\Graphviz2.38\bin\dot.exe
Dot version: dot - graphviz version 2.38.0 (20140413.2041)
Installation seems OK. File generation OK

Example: @startuml
'Using an Activity Diagram

'This is the new syntax (from V7947)
'It doesn't seem to offer as many layout controls, and there
'are a couple of bugs preventing correct content.
'but the text is clearer, and it allows more flow control.
'GR ADVICE: use the old format.

title Activity Diagram PlantUML New Syntax

start
split
:VIDEOSOURCE;
'PlantUML bug - Arrow label across partition is never shown
->image;
partition OpticalFlow {
:FeatureDetection
<I>FXT::harriscorners</I>;
->feature_list;
:FeatureTracking
<I>TRA::nn_association</I>;
->track_list;
}
split again
:CAR;
->Info from Car;
:EgoMotion
<I>EGO::Ego_2D</I>;
'PlantUML bug - Arrow label is placed after the end split. (separately reported)
->3x3_matrix;
end split
:Triangulation
<I>SSFM::triangulation</I>;
->3d_point_list;
:3DTracking
<I>FXT::harriscorners</I>;
->3d_point_list;
stop

@enduml

1 Answer

0 votes
answered Feb 10, 2015 by plantuml (295,000 points)
Hello,

Thanks for the report.

The following beta should solve this (there are still some drawing artifacts).
https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Some bugs are probably still there about labels on arrow.
Do not hesitate to de some more feedback...

Thanks again for your tests!
...