Uses of Class
mahjong.Tile

Uses of Tile in mahjong
 

Fields in mahjong declared as Tile
private  Tile[][][] Board.content
          The actual board is a 3d array of Tile objects.
 

Methods in mahjong that return Tile
 Tile[][][] Board.getContent()
          Getter.
 

Methods in mahjong with parameters of type Tile
 int Tile.compareTo(Tile t)
          Interface method.
 boolean Board.free(Tile t)
          Return true if the given tile is free.
 boolean Tile.matches(Tile t)
          Checks if this tile is a matching tile for the given one.
 boolean Board.remove(Tile t)
          Attempt to remove the given tile; the tile must be present.