Exemple #1
0
 public abstract void changeState(CohortState cohstate);
Exemple #2
0
 public void setState(CohortState state)
 {
     this.state = state;
     state.setCohort(this);
 }
Exemple #3
0
 public override void changeState(CohortState cohstate)
 {
     stopTimer();
     startTimer(TIMEOUT);
     setState(cohstate);
 }