Example #1
0
 /**
  * verifies if all contestants of each team are sitting down at the bench
  *
  * @return true if all contestants are sitting donw
  * @return false, otherwise
  */
 private boolean allSittingTeams() throws RemoteException {
   return bench.allSittingTeams();
 }
Example #2
0
  /**
   * referee announces a new trial
   *
   * @param nrGame is the number of the game
   * @param nrTrial is the number of the trial
   */
  private VectorTimestamp callTrial(int nrGame, int nrTrial, VectorTimestamp vt)
      throws RemoteException {

    return bench.callTrial(nrGame, nrTrial, vt);
  }