Uses of Interface
com.anji.tournament.Game

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

Classes in com.anji.gomoku that implement Game
 class GomokuGame
           
 

Uses of Game in com.anji.roshambo
 

Classes in com.anji.roshambo that implement Game
 class RoshamboGame
          http://www.cs.unimaas.nl/~donkers/games/roshambo03/ Modified by Philip Tucker to implement Game interface.
 

Uses of Game in com.anji.tournament
 

Classes in com.anji.tournament that implement Game
 class IteratedGame
          This is a game composed of iterating over a component game.
 

Methods in com.anji.tournament that return Game
protected  Game SimpleTournament.getGame()
           
 

Constructors in com.anji.tournament with parameters of type Game
SingleEliminationTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
          ctor Note: this object overrides aMatch countOpponentResults to true
SimpleTournament(Game aGame, ScoringWeights aWeights)
           
KRandomOppsTournament(Game aGame, int aK, ScoringWeights aWeights, java.util.Random aRand)
          Note: this object overrides aMatch countOpponentResults to false
IteratedGame(Game aComponentGame, int anIterationCount)
           
IteratedGame(Game aComponentGame, int anIterationCount, GameConfiguration aConfig)
           
DoubleEliminationTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
          ctor Note: this object overrides aMatch countOpponentResults to true
DirectTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
           
Bracket(java.lang.String aName, java.util.Random aRand, java.util.List aContestants, Game aGame)
          Bracket has a list of contestants and a destination for losers.
 

Uses of Game in com.anji.ttt
 

Classes in com.anji.ttt that implement Game
 class TttGame