ラウンドトリッピング用のコード・セグメントの変更

ステートチャートの操作やアクションとして入力された手続き振る舞いである、ラウンドトリッピングのコード・セグメントを変更できます。

このタスクについて

実装コードのすべてのセグメントは以下の形式をしています。

... generated code
//#[ segment-type segment-identifierC++ code you entered 
//#]   
... generated code continues

これらのコード・セグメントは、すべて実装ファイルにあります。

以下のセグメントのみ、ラウンドトリップを行う能力を失わずに変更できます。

    //#[ reaction reaction-id
    // you can modify this code
    someReactionCode();
    // do not modify beyond the //#] sign
    //#]
    //#[ exitAction ROOT.idle.(Entry)
    someExitAction();
    //#]
    //#[ entryAction ROOT.idle.(Entry)
    someEntryAction();
    //#]
    //#[ transition transition-id    someTransitionCode();
    //#]  
    //#[ operation doit()
    someOperationCode();
    someMoreOperationCode();
    //#]   

フィードバック