Uses of Class
com.anji.tournament.PlayerResults

Packages that use PlayerResults
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 PlayerResults in com.anji.gomoku
 

Methods in com.anji.gomoku with parameters of type PlayerResults
 GameResults GomokuGame.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 

Uses of PlayerResults in com.anji.roshambo
 

Methods in com.anji.roshambo with parameters of type PlayerResults
 GameResults RoshamboGame.play(PlayerResults playerOneResults, PlayerResults playerTwoResults)
           
 

Uses of PlayerResults in com.anji.tournament
 

Fields in com.anji.tournament declared as PlayerResults
 PlayerResults SimpleTournament.PlayerPair.contestant
          main contestant
 PlayerResults SimpleTournament.PlayerPair.opponent
          opponent
 

Methods in com.anji.tournament with parameters of type PlayerResults
 GameResults IteratedGame.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 GameResults Game.play(PlayerResults contestantResults, PlayerResults opponentResults)
           
 

Constructors in com.anji.tournament with parameters of type PlayerResults
TournamentPlayerResults(PlayerResults aPlayerResults, int aRank, int aTournamentScore)
           
 

Uses of PlayerResults in com.anji.ttt
 

Methods in com.anji.ttt with parameters of type PlayerResults
 GameResults TttGame.play(PlayerResults contestantResults, PlayerResults opponentResults)