de.kosi.model.tournament
Interface MatchCallback


public interface MatchCallback

This interface is used to inform the tournament of something that cannot be handled by the match itself.

ChangeLog:

 $Log: MatchCallback.java,v $
 Revision 1.3  2001/07/31 12:55:27  betacarotine
 worked on the tournament

 Revision 1.2  2001/07/31 12:15:24  betacarotine
 worked on the tournament

 Revision 1.1.1.1  2001/04/29 18:05:18  jiriki
 Imported sources from zola.

 Revision 1.1  2001/04/20 15:13:42  login
 added the MatchCallBack to the repository

 

Version:
$Revision: 1.3 $ ($Date: 2001/07/31 12:55:27 $)
Author:
Timo, Niklas, Ole

Method Summary
 void gameFinished(GameImpl game)
          Called by the match, when a game is finished.
 void gameStarted(GameImpl game)
          Called by the match when a game is started.
 void matchFinished(Match match, java.util.List results)
          Called by the match, when it is finished.
 

Method Detail

matchFinished

public void matchFinished(Match match,
                          java.util.List results)
Called by the match, when it is finished.
Parameters:
match - Match that is finished.
results - List of results of the games.

gameStarted

public void gameStarted(GameImpl game)
Called by the match when a game is started.
Parameters:
game - The game that just started.

gameFinished

public void gameFinished(GameImpl game)
Called by the match, when a game is finished.
Parameters:
game - the game that is finished.