Uses of Class
net.sf.freecol.common.model.Region

Packages that use Region
net.sf.freecol.common.model Contains the game model. 
net.sf.freecol.server.model Contains model classes with server specific information. 
 

Uses of Region in net.sf.freecol.common.model
 

Methods in net.sf.freecol.common.model that return Region
 Region Tile.getDiscoverableRegion()
          Return the discoverable Region of this Tile, or null if there is none.
 Region Region.getDiscoverableRegion()
          Returns a discoverable Region or null.
 Region Region.getParent()
          Get the Parent value.
 Region Tile.getRegion()
          Get the Region value.
 Region Map.getRegion(java.lang.String id)
          Returns the Region with the given ID.
 Region Map.getRegionByName(java.lang.String id)
          Returns the Region with the given name.
 

Methods in net.sf.freecol.common.model that return types with arguments of type Region
 java.util.List<Region> Region.getChildren()
          Get the Children value.
 java.util.Collection<Region> Map.getRegions()
           
 

Methods in net.sf.freecol.common.model with parameters of type Region
 void Region.setParent(Region newParent)
          Set the Parent value.
 void Tile.setRegion(Region newRegion)
          Set the Region value.
 void Map.setRegion(Region region)
          Describe setRegion method here.
 

Method parameters in net.sf.freecol.common.model with type arguments of type Region
 void Region.setChildren(java.util.List<Region> newChildren)
          Set the Children value.
 

Uses of Region in net.sf.freecol.server.model
 

Subclasses of Region in net.sf.freecol.server.model
 class ServerRegion
           
 

Constructors in net.sf.freecol.server.model with parameters of type Region
ServerRegion(Game game, java.lang.String nameKey, Region.RegionType type, Region parent)