MathewWi / umple

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

Support for nested state machines in state table generation #670

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

If you run the following

class Student
{

  status {

    On {
      power -> Off;
      Play {
        push -> Pause;
      }
      Pause { 
        push -> Play; 
      }
    }
    Off {
      power -> On;
    }
  }

}

The state table doesn't support two things that it should.

First, the nested Play / Pause should be better associated with the On state.  
AND, the Play/Pause should show the event handling of the parent On state.

Original issue reported on code.google.com by aforw...@gmail.com on 17 Jan 2015 at 11:07

GoogleCodeExporter commented 9 years ago
This has been solved with r5138.

Original comment by CraigBry...@gmail.com on 1 Mar 2015 at 3:58