コード例 #1
0
 /**
  * updates the number of the trial
  *
  * @param nrTrial is the number of the trial
  */
 private void updateTrialNumber(int nrTrial, VectorTimestamp vt) throws RemoteException {
   repository.updateTrialNumber(nrTrial, vt);
 }
コード例 #2
0
 /**
  * Say if the a game was ended by a knock out
  *
  * @param nrGame is the number of the game
  * @param nrTrial is the number of the trial
  * @param team is the name of the team
  */
 private void isKnockOut(int nrGame, int nrTrial, String team, VectorTimestamp vt)
     throws RemoteException {
   repository.isKnockOut(nrGame, nrTrial, team, vt);
 }
コード例 #3
0
 /**
  * updates the number of the game
  *
  * @param nrGame is the number of the game
  */
 private void updateGameNumber(int nrGame, VectorTimestamp vt) throws RemoteException {
   repository.updateGameNumber(nrGame, vt);
 }
コード例 #4
0
 /**
  * updates referee current state
  *
  * @param state is the current referee state
  */
 private void updateRefState(ERefereeState state, VectorTimestamp vt) throws RemoteException {
   repository.updateRefState(state, vt);
 }