MathewWi / umple

Automatically exported from code.google.com/p/umple
0 stars 0 forks source link

Guards on auto-transitions not appearing properly in GraphViz State machines #679

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Put the following code in UmpleOnline:

class ExampleAuto {
  boolean noTransition;

  sm1 {
    First {
      [!noTransition] -> Second;
    }
    Second {
      event -> First;
    }
  }
}

2. View the Graphviz State machine diagram

What is the expected output? What do you see instead?
The expected transition from First to Second is:

[!getNoTransition()]

But it appears as a single open square brace: "["

Original issue reported on code.google.com by CraigBry...@gmail.com on 22 Feb 2015 at 5:06

GoogleCodeExporter commented 9 years ago

Original comment by CraigBry...@gmail.com on 2 Mar 2015 at 3:13

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r5170.

Original comment by CraigBry...@gmail.com on 2 Mar 2015 at 3:20