Holger's
Java API

Uses of Class
com.antelmann.game.AbstractGame

Packages that use AbstractGame
com.antelmann.game This package contains packages to support game implementations. 
com.antelmann.game.awari This package contains an implementation of the game Awari. 
com.antelmann.game.card This package contains classes to serve card games and also includes a full implementation of BlackJack. 
com.antelmann.game.checkers This package contains an implementation of the game checkers. 
com.antelmann.game.chess This package contains an implementation of the game chess. 
com.antelmann.game.fourwins This package contains a reference implementation of the game Four-Connects or 4-wins or 4-in-a-row. 
com.antelmann.game.gomoku This package contains an implementation of the game Go-moku. 
com.antelmann.game.mine This package contains an implementation of the game MineSweeper. 
com.antelmann.game.muehle This package contains a reference implementation of the game "Mühle" (as it is known in German) or "Nine Men's Morris". 
com.antelmann.game.puzzle This package contains single-user game implementations representing puzzles. 
com.antelmann.game.reversi This package contains an implementation of the game Reversi or Othello. 
com.antelmann.game.ttt This package simply contains an implementation of the game Tick Tack Toe. 
com.antelmann.game.wolfsheep This package contains an implementation of the game Wolf&Sheep. 
 

Uses of AbstractGame in com.antelmann.game
 

Methods in com.antelmann.game that return AbstractGame
static AbstractGame AbstractGame.loadFromFile(String fileLocation)
          just a convenience function
 

Uses of AbstractGame in com.antelmann.game.awari
 

Subclasses of AbstractGame in com.antelmann.game.awari
 class AwariGame
          AwariGame implements an ancient African game (for all I know).
 

Uses of AbstractGame in com.antelmann.game.card
 

Subclasses of AbstractGame in com.antelmann.game.card
 class BlackJack
          BlackJack implements the rules for playing BlackJack.
 

Uses of AbstractGame in com.antelmann.game.checkers
 

Subclasses of AbstractGame in com.antelmann.game.checkers
 class CheckersGame
          an implementation of the game checkers.
 

Uses of AbstractGame in com.antelmann.game.chess
 

Subclasses of AbstractGame in com.antelmann.game.chess
 class ChessGame
          ChessGame provides all external functions needed to play chess.
 

Uses of AbstractGame in com.antelmann.game.fourwins
 

Subclasses of AbstractGame in com.antelmann.game.fourwins
 class FourWinsGame
          FourWinsGame represents the game of 4-wins or 4-connects.
 

Uses of AbstractGame in com.antelmann.game.gomoku
 

Subclasses of AbstractGame in com.antelmann.game.gomoku
 class GomokuGame
          an implementation of the game Go-moku
 

Uses of AbstractGame in com.antelmann.game.mine
 

Subclasses of AbstractGame in com.antelmann.game.mine
 class MineSweeper
          An implementation of the game Mine Sweeper
 

Uses of AbstractGame in com.antelmann.game.muehle
 

Subclasses of AbstractGame in com.antelmann.game.muehle
 class MuehleGame
          a representation of the game of Muehle
 

Uses of AbstractGame in com.antelmann.game.puzzle
 

Subclasses of AbstractGame in com.antelmann.game.puzzle
 class EightQueens
          EightQueens implements the problem of placing 8 queens on a chess board so that they don't attack each other.
 class Solitaire
          A one-player game where the goal is to remove all 'peggs' on the board by jumping over them one by one.
 class TilePuzzle
          implements a very flexible tile puzzle game with various options
 class WSPuzzle
          WSPuzzle implements the 'Wolf & Sheep Puzzle'.
 

Uses of AbstractGame in com.antelmann.game.reversi
 

Subclasses of AbstractGame in com.antelmann.game.reversi
 class ReversiGame
          also known as Othello game
 

Uses of AbstractGame in com.antelmann.game.ttt
 

Subclasses of AbstractGame in com.antelmann.game.ttt
 class TickTackToe
          This class implements the game TickTackToe.
 

Uses of AbstractGame in com.antelmann.game.wolfsheep
 

Subclasses of AbstractGame in com.antelmann.game.wolfsheep
 class WolfsheepGame
          an implementation of the wolf&sheep game which is played on a chess-like board; it uses the BoardPosition from the chess package for convenience.
 



(c) 2001-2006 Holger Antelmann - all rights reserved (contact: info@antelmann.com)
see www.antelmann.com/developer for further details and available downloads