43444546474849
public void initializeRule(Game game) throws InitializationException { Round round = game.getRounds().get(0); if (round != null) round.addRoundListener(this); else throw new InitializationException("Can't find the expected Round"); }
63646566676869
if (subround != null) { subround.addRoundStopCondition(this); subround.addRoundListener(this); } else throw new InitializationException("Can't find the expected subRound"); }
121122123124125126127128129
if (subround != null) subround = subround.getSubRounds().getSortedList().get(0); if (subround != null) { subround.addRoundListener(this); } else throw new InitializationException( "Can't find the expected subRound"); }
65666768697071
subround = subround.getSubRounds().getSortedList().get(0); if (subround != null) { subround.addRoundStopCondition(this); } else throw new InitializationException("Can't find the expected subRound"); }
54555657585960