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