Uses of Class
com.anji.tournament.GameResults

Packages that use GameResults
com.anji.gomoku com.anji.gomoku contains classes to handle Go-Moku (see Gamerz.net for rules). 
com.anji.roshambo com.anji.roshambo contains classes to implement the game of roshambo, also commonly known as rock-scissors-paper. 
com.anji.tournament com.anji.tournament contains classes to handle tournaments and games. 
com.anji.ttt com.anji.ttt contains classes to handle Tic-Tac-Toe (see Yahooligans for rules). 
 

Uses of GameResults in com.anji.gomoku
 

Methods in com.anji.gomoku that return GameResults
 GameResults GomokuGame.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 

Uses of GameResults in com.anji.roshambo
 

Methods in com.anji.roshambo that return GameResults
 GameResults RoshamboGame.play(PlayerResults playerOneResults, PlayerResults playerTwoResults)
           
 

Uses of GameResults in com.anji.tournament
 

Methods in com.anji.tournament that return GameResults
 GameResults IteratedGame.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 GameResults Game.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 

Methods in com.anji.tournament with parameters of type GameResults
 void GameResults.increment(GameResults newResults)
          increment player stats based on new results
 void GameResults.incrementSwapped(GameResults newResults)
          increment player stats based on new results; swap player one and player two stats
 

Uses of GameResults in com.anji.ttt
 

Methods in com.anji.ttt that return GameResults
 GameResults TttGame.play(PlayerResults contestantResults, PlayerResults opponentResults)