Uses of Class
jfreerails.controller.ModelRoot.Property

Packages that use ModelRoot.Property
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.client.view Provides classes that make up the jfreerails client user interface that is implemented using Swing components. 
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. 
 

Uses of ModelRoot.Property in jfreerails.client.common
 

Fields in jfreerails.client.common with type parameters of type ModelRoot.Property
private  java.util.HashMap<ModelRoot.Property,java.lang.Object> ModelRootImpl.properties
           
 

Methods in jfreerails.client.common with parameters of type ModelRoot.Property
 java.lang.Object ModelRootImpl.getProperty(ModelRoot.Property p)
           
 boolean ModelRootImpl.is(ModelRoot.Property p, java.lang.Object value)
           
 void ModelRootListener.propertyChange(ModelRoot.Property p, java.lang.Object oldValue, java.lang.Object newValue)
           
 void SoundManager.propertyChange(ModelRoot.Property p, java.lang.Object before, java.lang.Object after)
           
 void ModelRootImpl.setProperty(ModelRoot.Property p, java.lang.Object newValue)
           
 

Uses of ModelRoot.Property in jfreerails.client.view
 

Methods in jfreerails.client.view with parameters of type ModelRoot.Property
 void MapViewJComponentConcrete.propertyChange(ModelRoot.Property p, java.lang.Object before, java.lang.Object after)
          Checks what triggered the specfied PropertyChangeEvent and reacts as follows.
 void RHSJTabPane.propertyChange(ModelRoot.Property prop, java.lang.Object before, java.lang.Object after)
          Updates the Terrain Info Panel if the specfied PropertyChangeEvent was triggered by the cursor moving.
 void ServerControlModel.propertyChange(ModelRoot.Property p, java.lang.Object oldValue, java.lang.Object newValue)
           
 

Uses of ModelRoot.Property in jfreerails.controller
 

Methods in jfreerails.controller that return ModelRoot.Property
static ModelRoot.Property ModelRoot.Property.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ModelRoot.Property[] ModelRoot.Property.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 ModelRoot.Property
 java.lang.Object ModelRoot.getProperty(ModelRoot.Property property)
           
 boolean ModelRoot.is(ModelRoot.Property property, java.lang.Object value)
          Tests whether the specified property has the specified value.
 void ModelRoot.setProperty(ModelRoot.Property property, java.lang.Object newValue)