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

Packages that use Modifier
net.sf.freecol.client.gui.panel Contains the panels and dialogs. 
net.sf.freecol.common Contains classes in use by both the server and the client. 
net.sf.freecol.common.model Contains the game model. 
 

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

Fields in net.sf.freecol.client.gui.panel declared as Modifier
static Modifier PreCombatDialog.BASE_DEFENCE_MODIFIER
           
 

Methods in net.sf.freecol.client.gui.panel that return types with arguments of type Modifier
 java.util.Set<Modifier> FreeColPanel.sortModifiers(java.util.Set<Modifier> result)
          Sort the given modifiers according to type.
 

Methods in net.sf.freecol.client.gui.panel with parameters of type Modifier
 java.lang.String ColopediaPanel.getModifierAsString(Modifier modifier)
           
 

Method parameters in net.sf.freecol.client.gui.panel with type arguments of type Modifier
 java.util.Set<Modifier> FreeColPanel.sortModifiers(java.util.Set<Modifier> result)
          Sort the given modifiers according to type.
 

Uses of Modifier in net.sf.freecol.common
 

Methods in net.sf.freecol.common that return types with arguments of type Modifier
 java.util.List<Modifier> Specification.getModifiers(java.lang.String id)
          Return a list of all Modifiers with the given id.
 

Methods in net.sf.freecol.common with parameters of type Modifier
 void Specification.addModifier(Modifier modifier)
          Add a modifier.
 

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

Methods in net.sf.freecol.common.model that return Modifier
static Modifier Modifier.createTeaPartyModifier(Turn turn)
           
 Modifier Features.getModifier(java.lang.String id)
          Returns the Modifier identified by id.
 Modifier BuildingType.getProductionModifier()
           
 Modifier TileImprovementType.getProductionModifier(GoodsType goodsType)
           
 Modifier TileImprovement.getProductionModifier(GoodsType goodsType)
          Returns the bonus Modifier (if any).
 Modifier Colony.getProductionModifier(GoodsType goodsType)
           
 Modifier FeatureContainer.removeModifier(Modifier oldModifier)
          Removes and returns a Modifier from this modifier set.
 

Methods in net.sf.freecol.common.model that return types with arguments of type Modifier
 java.util.Set<Modifier> TileType.getDefenceBonus()
           
 java.util.Set<Modifier> SimpleCombatModel.getDefensiveModifiers(Colony colony, Unit defender)
          Return a list of all defensive modifiers that apply to the defender versus the bombarding colony.
 java.util.Set<Modifier> CombatModel.getDefensiveModifiers(Colony colony, Unit defender)
          Return a list of all defensive modifiers that apply to the defender versus the bombarding colony.
 java.util.Set<Modifier> SimpleCombatModel.getDefensiveModifiers(Unit attacker, Unit defender)
          Return a list of all defensive modifiers that apply to the defender versus the attacker.
 java.util.Set<Modifier> CombatModel.getDefensiveModifiers(Unit attacker, Unit defender)
          Return a list of all defensive modifiers that apply to the defender versus the attacker.
 java.util.Set<Modifier> FeatureContainer.getModifiers()
           
 java.util.Set<Modifier> Unit.getModifierSet(java.lang.String id)
          Get a modifier that applies to this Unit.
 java.util.Set<Modifier> FreeColGameObjectType.getModifierSet(java.lang.String id)
           
 java.util.Set<Modifier> FeatureContainer.getModifierSet(java.lang.String id)
          Returns a Set of Abilities with the given ID.
 java.util.Set<Modifier> Colony.getModifierSet(java.lang.String id)
          Get the Modifier value.
 java.util.Set<Modifier> FeatureContainer.getModifierSet(java.lang.String id, FreeColGameObjectType objectType)
          Returns a Set of Abilities with the given ID which apply to the given FreeColGameObjectType.
 java.util.Set<Modifier> FeatureContainer.getModifierSet(java.lang.String id, FreeColGameObjectType objectType, Turn turn)
          Returns a Set of Abilities with the given ID which apply to the given FreeColGameObjectType and Turn.
 java.util.Set<Modifier> SimpleCombatModel.getOffensiveModifiers(Colony colony, Unit defender)
          Return a list of all offensive modifiers that apply to the attacker versus the defender.
 java.util.Set<Modifier> CombatModel.getOffensiveModifiers(Colony colony, Unit defender)
          Return a list of all offensive modifiers that apply to the attacker versus the defender.
 java.util.Set<Modifier> SimpleCombatModel.getOffensiveModifiers(Unit attacker, Unit defender)
          Return a list of all offensive modifiers that apply to the attacker versus the defender.
 java.util.Set<Modifier> CombatModel.getOffensiveModifiers(Unit attacker, Unit defender)
          Return a list of all offensive modifiers that apply to the attacker versus the defender.
 java.util.Set<Modifier> TileType.getProductionBonus(GoodsType goodsType)
          Returns the production bonus for the given GoodsType.
 java.util.Set<Modifier> TileItemContainer.getProductionBonus(GoodsType goodsType, UnitType unitType)
          Describe getProductionBonus method here.
 java.util.Set<Modifier> Tile.getProductionBonus(GoodsType goodsType, UnitType unitType)
          Describe getProductionBonus method here.
 java.util.Set<Modifier> ResourceType.getProductionModifier(GoodsType goodsType, UnitType unitType)
           
 java.util.Set<Modifier> ColonyTile.getProductionModifiers(GoodsType goodsType, UnitType unitType)
          Returns the production of the given type of goods.
 

Methods in net.sf.freecol.common.model with parameters of type Modifier
 void FreeColGameObjectType.addModifier(Modifier modifier)
           
 boolean FeatureContainer.addModifier(Modifier modifier)
          Add the given Modifier to the set of Modifiers present.
 Modifier FeatureContainer.removeModifier(Modifier oldModifier)
          Removes and returns a Modifier from this modifier set.
 

Method parameters in net.sf.freecol.common.model with type arguments of type Modifier
static float FeatureContainer.applyModifierSet(float number, Turn turn, java.util.Set<Modifier> modifierSet)
          Applies a given Set of Modifiers to the given float value.
 

Constructors in net.sf.freecol.common.model with parameters of type Modifier
Modifier(Modifier template)
          Creates a new Modifier instance.