Uses of Class
com.asdf.server.Server

Packages that use Server
com.asdf.common Common classes shared by client and server. 
com.asdf.server Server component of the software. 
 

Uses of Server in com.asdf.common
 

Methods in com.asdf.common with parameters of type Server
 void Game.initialize(Server server, long gameID, java.lang.String name)
          Only constructor.
 

Uses of Server in com.asdf.server
 

Methods in com.asdf.server that return Server
 Server ClientConnection.getServer()
          Getter for server
 

Methods in com.asdf.server with parameters of type Server
static Game GameFactory.createGame(java.lang.String[] classDirs, java.lang.String className, Server server, long gameID, java.lang.String name)
          Tries to load and initialize a class found in classDir in package className.
static Game GameFactory.createGame(java.lang.String className, Server server, long gameID, java.lang.String name)
          Tries to load and initialize a class found in classDir in package className.
 

Constructors in com.asdf.server with parameters of type Server
ClientConnection(Server server, java.nio.channels.SelectionKey key, java.net.InetSocketAddress address)
          Constructs ClientConnection.