Uses of Class
com.asdf.parser.GameResponse

Packages that use GameResponse
com.asdf.client Client component of the software. 
com.asdf.common Common classes shared by client and server. 
com.asdf.parser Automatically generated parser class for Message objects 
com.asdf.plugins.hello   
com.asdf.plugins.pokergames In-built pokergame implementation. 
com.asdf.server Server component of the software. 
com.asdf.test Contains all the test cases and associated utility libraries. 
 

Uses of GameResponse in com.asdf.client
 

Methods in com.asdf.client with parameters of type GameResponse
 void LobbyController.startGameClient(GameResponse rsp)
          Loads dynamically a game client plugin of a type chosen from LobbyView, initializes it with parameters received from server, sets its connection handler and starts it.
 

Uses of GameResponse in com.asdf.common
 

Methods in com.asdf.common with parameters of type GameResponse
 void Game.handleResponseSync(long sessionID, GameResponse response)
          Handle incoming GameResponse.
abstract  void GameController.init(GameResponse joinResponse, java.lang.String accountName, AccountType accountType)
          Since GameControllers are loaded dynamically in lobby it is not possible to use a constructor with parameters, which GameController implementations might need.
 

Uses of GameResponse in com.asdf.parser
 

Methods in com.asdf.parser that return GameResponse
 GameResponse ObjectFactory.createGameResponse()
          Create an instance of GameResponse
 GameResponse Response.getGame()
          Gets the value of the game property.
 

Methods in com.asdf.parser with parameters of type GameResponse
 void Response.setGame(GameResponse value)
          Sets the value of the game property.
 

Uses of GameResponse in com.asdf.plugins.hello
 

Methods in com.asdf.plugins.hello with parameters of type GameResponse
 void HelloGame.init(GameResponse arg0, java.lang.String arg1, AccountType arg2)
          When the client is joining the game for the first time, if he wants to something special about it, this is the place.
 

Uses of GameResponse in com.asdf.plugins.pokergames
 

Methods in com.asdf.plugins.pokergames with parameters of type GameResponse
 void PokerGameController.init(GameResponse response, java.lang.String accountName, AccountType accountType)
          initialized the game controller for use.
 

Uses of GameResponse in com.asdf.server
 

Methods in com.asdf.server that return GameResponse
 GameResponse GameManager.createGame(GameRequest request, long sessionID, ClientConnection client)
          Create game with specified parameters.
 

Methods in com.asdf.server with parameters of type GameResponse
 void GameManager.handleGameResponse(GameResponse response, long sessionID, ClientConnection client)
          Handles game responses.
 

Uses of GameResponse in com.asdf.test
 

Methods in com.asdf.test with parameters of type GameResponse
 void TestGamePlugin.handleResponse(long sessionID, GameResponse response)