Uses of Class
manager.Piece

Packages that use Piece
manager   
 

Uses of Piece in manager
 

Subclasses of Piece in manager
 class CheckersPiece
          This class implements the two kind of checkers piece (simple and checker).
 class ChessPiece
          This class implements any chess piece.
 class DeflexionPiece
          This class implements any deflexion piece.
 class NullPiece
          This class extends the generic piece class Piece and is used to fill "empty cells".
 class TictactoePiece
          This class implements tic tac toe pieces (X or O).
 

Fields in manager declared as Piece
 Piece RotateAction.ACTOR
           
 Piece MoveAction.ACTOR
           
 Piece AddAction.ACTOR
           
 Piece MoveAndEatAction.EATEN
           
 

Methods in manager that return Piece
 Piece Board.getPiece(int x, int y)
           
 

Methods in manager with parameters of type Piece
 boolean Board.addPiece(int x, int y, Piece element)
           
 boolean TictactoeGame.canAdd(int x, int y, Piece P)
           
 boolean Tictactoe3DGame.canAdd(int x, int y, Piece P)
           
 boolean DeflexionGame.canAdd(int x, int y, Piece P)
           
 boolean ChessGame.canAdd(int x, int y, Piece P)
           
 boolean CheckersGame.canAdd(int x, int y, Piece P)
           
 boolean ChessGame.isAdversary(Piece P1, int Player)
           
 boolean CheckersGame.isAdversary(Piece P1, int Player)
           
 boolean Board.replacePiece(int x, int y, Piece element)
           
 

Constructors in manager with parameters of type Piece
AddAction(int x, int y, Piece Actor)
           
MoveAction(int x, int y, int x2, int y2, Piece Actor)
           
MoveAndEatAction(int x, int y, int x2, int y2, Piece Actor, Piece Eaten)
           
MoveAndEatAction(int x, int y, int x2, int y2, Piece Actor, Piece Eaten, int x3, int y3)
           
RotateAction(int x, int y, java.lang.String sense, Piece Actor)