Uses of Class
blackjackanalyst.Table

Packages that use Table
blackjackanalyst   
blackjackanalyst.observer   
blackjackanalyst.strategy   
 

Uses of Table in blackjackanalyst
 

Methods in blackjackanalyst that return Table
 Table Player.getTable()
          Returns the table this player is playing blackjack at.
 

Methods in blackjackanalyst with parameters of type Table
 void PlayerStrategy.joinedTable(Table t)
          This informs the strategy that the player has now joined a table.
 void PlayerStrategy.leftTable(Table t)
          This informs the strategy that the player has now left the table it previously joined.
 void PlayerObserver.playerJoins(Table t)
          This method is invoked when the player joins a table.
 void PlayerObserver.playerLeaves(Table t)
          This method is invoked when the player leaves the table it had previously joined.
 

Uses of Table in blackjackanalyst.observer
 

Methods in blackjackanalyst.observer with parameters of type Table
 void WinLossPlayerObserver.playerJoins(Table t)
           
 void ConsolePlayerObserver.playerJoins(Table t)
           
 void AbstractPlayerObserver.playerJoins(Table t)
           
 void WinLossPlayerObserver.playerLeaves(Table t)
           
 void ConsolePlayerObserver.playerLeaves(Table t)
           
 void AbstractPlayerObserver.playerLeaves(Table t)
           
 

Uses of Table in blackjackanalyst.strategy
 

Methods in blackjackanalyst.strategy with parameters of type Table
 void DefaultPlayer.joinedTable(Table t)
           
 void BasicStrategyPlayer.joinedTable(Table t)
           
 void DefaultPlayer.leftTable(Table t)
           
 void BasicStrategyPlayer.leftTable(Table t)