コード例 #1
0
ファイル: Transition.cs プロジェクト: verivital/passel
 public Transition(ConcreteLocation p, Expr guard, Expr reset, AState nextState)
     : this(p, nextState)
 {
     this.Guard  = guard;
     this._reset = reset;
 }
コード例 #2
0
ファイル: Transition.cs プロジェクト: verivital/passel
 public Transition(ConcreteLocation p, AState nextState) : this(p)
 {
     this._nextStates = new List <AState>();
     this._nextStates.Add(nextState);
 }
コード例 #3
0
ファイル: Transition.cs プロジェクト: verivital/passel
 public Transition(ConcreteLocation p, AState nextState, AbstractTransitionType t)
     : this(p, nextState)
 {
     this._type = t;
 }
コード例 #4
0
ファイル: Transition.cs プロジェクト: verivital/passel
 public void addNextState(AState nextState)
 {
     this._nextStates.Add(nextState);
 }