Uses of Interface
jfreerails.controller.Message2Server

Packages that use Message2Server
jfreerails.client.common Provides classes that are used by the jfreerails client but are not jfreerails specific, that is, ones that could be used in another project: classes in this package should not import any classes from other jfreerails.* packages except jfreerails.util
jfreerails.controller Provides classes that may be used by the client or the server to operate on the game world, for example, building trains and stations. 
jfreerails.network Provides classes for sending moves and commands between the client and server. 
 

Uses of Message2Server in jfreerails.client.common
 

Methods in jfreerails.client.common with parameters of type Message2Server
 void ModelRootImpl.sendCommand(Message2Server c)
           
 

Uses of Message2Server in jfreerails.controller
 

Methods in jfreerails.controller with parameters of type Message2Server
 void ModelRoot.sendCommand(Message2Server c)
           
 

Uses of Message2Server in jfreerails.network
 

Classes in jfreerails.network that implement Message2Server
 class LoadGameMessage2Server
          Request to load a game.
 class NewGameMessage2Server
          Request to start a game on a new map.
 class RefreshListOfGamesMessage2Server
          Tells the server to check the filesystem for changes to the available new maps and saved games.
 class SaveGameMessage2Server
          A request to save the game.
 

Methods in jfreerails.network with parameters of type Message2Server
 void FreerailsClient.sendCommand(Message2Server c)
           
 void ServerCommandReceiver.sendCommand(Message2Server c)