Uses of Interface
com.asdf.client.MessageHandler

Packages that use MessageHandler
com.asdf.client Client component of the software. 
com.asdf.common Common classes shared by client and server. 
com.asdf.plugins.hello   
com.asdf.plugins.pokergames In-built pokergame implementation. 
com.asdf.plugins.pokergames.texasholdem Texas Hold'em implementation. 
 

Uses of MessageHandler in com.asdf.client
 

Classes in com.asdf.client that implement MessageHandler
 class LobbyController
          LobbyController is the centerpiece of the programs client side.
 

Methods in com.asdf.client with parameters of type MessageHandler
 boolean ConnectionHandler.registerMessageHandler(MessageHandler handler)
          Game and lobby clients register their response handlers to ConnectionHandler if they want to receive messages from server.
 boolean ConnectionHandler.unRegisterMessageHandler(MessageHandler handler)
          Removes a registered response handler.
 

Uses of MessageHandler in com.asdf.common
 

Classes in com.asdf.common that implement MessageHandler
 class GameController
          GameController is an abstract class which implements some basic functionality necessary for client side game controllers.
 

Uses of MessageHandler in com.asdf.plugins.hello
 

Classes in com.asdf.plugins.hello that implement MessageHandler
 class HelloGame
          An example game framework provided by the ASDF group to get you a quick start on creating your own great games in our game server system.
 

Uses of MessageHandler in com.asdf.plugins.pokergames
 

Classes in com.asdf.plugins.pokergames that implement MessageHandler
 class PokerGameController
          Provides control for receiving game updates and forwarding them to the players and GUI and sending actions to server
 

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

Classes in com.asdf.plugins.pokergames.texasholdem that implement MessageHandler
 class TexasGameController