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

Packages that use ColonyTile
net.sf.freecol.client.gui.i18n  
net.sf.freecol.client.gui.panel Contains the panels and dialogs. 
net.sf.freecol.common.model Contains the game model. 
net.sf.freecol.server.ai The main package of the ai package tree. 
 

Uses of ColonyTile in net.sf.freecol.client.gui.i18n
 

Methods in net.sf.freecol.client.gui.i18n with parameters of type ColonyTile
static java.lang.String Messages.getLabel(ColonyTile colonyTile)
          Returns a description of the tile, with the name of the tile and any improvements made to it (road/plow).
static java.lang.String Messages.getLocationName(ColonyTile colonyTile)
          Returns the (non-unique) name of the given ColonyTile.
 

Uses of ColonyTile in net.sf.freecol.client.gui.panel
 

Constructors in net.sf.freecol.client.gui.panel with parameters of type ColonyTile
ColonyPanel.TilePanel.ASingleTilePanel(ColonyTile colonyTile, int x, int y)
           
 

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

Methods in net.sf.freecol.common.model that return ColonyTile
 ColonyTile Colony.getColonyTile(int x, int y)
          Gets the specified ColonyTile.
 ColonyTile Colony.getColonyTile(Tile t)
          Returns the ColonyTile matching the given Tile.
 ColonyTile Colony.getVacantColonyTileFor(Unit unit, boolean allowClaim, GoodsType... goodsTypes)
          Returns a vacant ColonyTile where the given unit produces the maximum output of the given goodsType.
 ColonyTile Unit.getWorkTile()
          Gets the ColonyTile this unit is working in.
 

Methods in net.sf.freecol.common.model that return types with arguments of type ColonyTile
 java.util.List<ColonyTile> Colony.getColonyTiles()
          Gets a List of every ColonyTile in this Colony.
 

Uses of ColonyTile in net.sf.freecol.server.ai
 

Constructors in net.sf.freecol.server.ai with parameters of type ColonyTile
ColonyPlan.Production(ColonyTile ct, GoodsType gt)