Uses of Class
jfreerails.controller.ClientControlInterface.ClientProperty

Packages that use ClientControlInterface.ClientProperty
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.launcher Provides the classes the make up the launcher. 
jfreerails.network Provides classes for sending moves and commands between the client and server. 
 

Uses of ClientControlInterface.ClientProperty in jfreerails.controller
 

Methods in jfreerails.controller that return ClientControlInterface.ClientProperty
static ClientControlInterface.ClientProperty ClientControlInterface.ClientProperty.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ClientControlInterface.ClientProperty[] ClientControlInterface.ClientProperty.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in jfreerails.controller with parameters of type ClientControlInterface.ClientProperty
 void ClientControlInterface.setProperty(ClientControlInterface.ClientProperty propertyName, java.io.Serializable value)
          Sets a property, for example, the list of saved games.
 

Uses of ClientControlInterface.ClientProperty in jfreerails.launcher
 

Methods in jfreerails.launcher with parameters of type ClientControlInterface.ClientProperty
 void GUIClient.setProperty(ClientControlInterface.ClientProperty propertyName, java.io.Serializable value)
           
 

Uses of ClientControlInterface.ClientProperty in jfreerails.network
 

Fields in jfreerails.network declared as ClientControlInterface.ClientProperty
private  ClientControlInterface.ClientProperty SetPropertyMessage2Client.key
           
 

Methods in jfreerails.network with parameters of type ClientControlInterface.ClientProperty
 java.io.Serializable FreerailsClient.getProperty(ClientControlInterface.ClientProperty propertyName)
           
 void FreerailsClient.setProperty(ClientControlInterface.ClientProperty propertyName, java.io.Serializable value)
           
 

Constructors in jfreerails.network with parameters of type ClientControlInterface.ClientProperty
SetPropertyMessage2Client(int id, ClientControlInterface.ClientProperty key, FreerailsSerializable value)