1

As I read through UML reference Manual chapter 7,state machine view ,page 81:

the state machine describes the dynamic behaviour of use cases

Could you Please illustrate the above quoted sentence through simple example ?

user2019510
  • 1,460
  • 5
  • 16
  • 29

1 Answers1

1

A Simple example based on login, the usecase are the triggers for the state transitions.

enter image description here

Martin Spamer
  • 5,437
  • 28
  • 44
  • thank you @Martin,what about guard condition and effect for each event in your example? – user2019510 Aug 14 '13 at 18:34
  • What about guard conditions? They are simple discrete conditions. What is important is the trigger events and those should be quite obvious given the example. valid(userName,password) == true; – Martin Spamer Aug 15 '13 at 09:12