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

Packages that use AbstractUnit
net.sf.freecol.client.control Contains the classes responsible for the control of the game. 
net.sf.freecol.client.gui.panel Contains the panels and dialogs. 
net.sf.freecol.common.model Contains the game model. 
 

Uses of AbstractUnit in net.sf.freecol.client.control
 

Methods in net.sf.freecol.client.control that return types with arguments of type AbstractUnit
 java.util.List<AbstractUnit> InGameController.getREFUnits()
          Gathers information about the REF.
 

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

Methods in net.sf.freecol.client.gui.panel with parameters of type AbstractUnit
 javax.swing.JLabel ReportPanel.createUnitTypeLabel(AbstractUnit unit)
           
 

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

Methods in net.sf.freecol.common.model that return types with arguments of type AbstractUnit
 java.util.List<AbstractUnit> Monarch.addToREF(java.util.Random random)
          Returns units to be added to the Royal Expeditionary Force.
 java.util.List<AbstractUnit> Monarch.getLandUnits()
          Returns only the land units.
 java.util.List<AbstractUnit> Monarch.getMercenaries(java.util.Random random)
          Returns units available as mercenaries.
 java.util.List<AbstractUnit> Monarch.getNavalUnits()
          Returns only the naval units.
 java.util.List<AbstractUnit> Monarch.getREF()
          Returns a List of all REF units.
 java.util.List<AbstractUnit> EuropeanNationType.getStartingUnits()
          Returns a list of this Nation's starting units.
 java.util.List<AbstractUnit> FoundingFather.getUnits()
          Get the Units value.
 

Method parameters in net.sf.freecol.common.model with type arguments of type AbstractUnit
 void Monarch.addToREF(java.util.List<AbstractUnit> units)
          Adds units to the Royal Expeditionary Force.
 int Monarch.getPrice(java.util.List<AbstractUnit> units, boolean rebate)
          Returns the price for the given units.
 void FoundingFather.setUnits(java.util.List<AbstractUnit> newUnits)
          Set the Units value.