148
protected virtual void handleTransitionEnterEvent_do() { throw new NotImplementedException(); }
1
using System;
2
using System.Collections.Generic;
3
4
/*****************************************
5
6
#ChangingState
7
8
-interface-
9
10
transition
11
changeState
12
13
-machine-
14
15
$S0
16
|<| handleTransitionExitEvent() ^
17
|transition| -> "transition" $S1 ^
18
19
$S1
20
|>| handleTransitionEnterEvent() ^
21
|changeState| ->> "change state" $S0 ^
22
23
-actions-
24
Cached Result
Hello World