Uses of Interface
com.asdf.plugins.pokergames.Stage

Packages that use Stage
com.asdf.plugins.pokergames In-built pokergame implementation. 
com.asdf.plugins.pokergames.texasholdem Texas Hold'em implementation. 
 

Uses of Stage in com.asdf.plugins.pokergames
 

Methods in com.asdf.plugins.pokergames that return Stage
 Stage GameModel.getStage()
           
 Stage GameInfo.getStage()
          Get the current game stage
 Stage Stage.indexToStage(int index)
          Returns the Stage that this integer represents this is the inverse of index()
 Stage Stage.lessThanTwoPlayers()
          Stage that should be run when there are one of less players still active Probably should correspond to case PokerGame.LESS_THAN_TWO_PLAYERS
 Stage Stage.next()
          Returns the stage following the current stage
 Stage GameModel.Stage()
           
 Stage Stage.start()
          Stage that should be run first
 

Methods in com.asdf.plugins.pokergames with parameters of type Stage
 void GameModel.setStage(Stage stage)
          Set the stage
 

Constructors in com.asdf.plugins.pokergames with parameters of type Stage
GameModel(double smallBlind, double bigBlind, int minPlayers, int maxPlayers, long gameID, Stage stage)
          Constructor for a new GameModel at the beginning of a table
 

Uses of Stage in com.asdf.plugins.pokergames.texasholdem
 

Classes in com.asdf.plugins.pokergames.texasholdem that implement Stage
 class TexasHoldemStage
           
 

Methods in com.asdf.plugins.pokergames.texasholdem that return Stage
 Stage TexasHoldemStage.indexToStage(int index)
           
 Stage TexasHoldemStage.lessThanTwoPlayers()
           
 Stage TexasHoldemStage.next()
           
 Stage TexasHoldemStage.start()