Uses of Class
net.sf.freecol.common.model.Player.Stance

Packages that use Player.Stance
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. 
net.sf.freecol.server.control Contains the classes responsible for the control of the game. 
 

Uses of Player.Stance in net.sf.freecol.client.control
 

Methods in net.sf.freecol.client.control with parameters of type Player.Stance
 void ClientModelController.setStance(Player first, Player second, Player.Stance stance)
          Updates stances.
 

Uses of Player.Stance in net.sf.freecol.client.gui.panel
 

Methods in net.sf.freecol.client.gui.panel that return Player.Stance
 Player.Stance NegotiationDialog.getStance()
          Returns the stance being offered, or Integer.MIN_VALUE if none is being offered.
 

Methods in net.sf.freecol.client.gui.panel with parameters of type Player.Stance
 void NegotiationDialog.setStance(Player.Stance stance)
          Sets the stance between the players.
 

Uses of Player.Stance in net.sf.freecol.common.model
 

Methods in net.sf.freecol.common.model that return Player.Stance
 Player.Stance StanceTradeItem.getStance()
          Get the Stance value.
 Player.Stance DiplomaticTrade.getStance()
          Returns the stance being offered, or null if none is being offered.
 Player.Stance Player.getStance(Player player)
          Returns the stance towards a given player.
static Player.Stance Player.Stance.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Player.Stance[] Player.Stance.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.sf.freecol.common.model with parameters of type Player.Stance
 void Player.changeRelationWithPlayer(Player player, Player.Stance newStance)
           
static java.lang.String Player.getStanceAsString(Player.Stance stance)
          Returns a string describing the given stance.
 void StanceTradeItem.setStance(Player.Stance newStance)
          Set the Stance value.
 void Player.setStance(Player player, Player.Stance newStance)
          Sets the stance towards a given player.
 void ModelController.setStance(Player first, Player second, Player.Stance stance)
          Updates stances.
 

Constructors in net.sf.freecol.common.model with parameters of type Player.Stance
StanceTradeItem(Game game, Player source, Player destination, Player.Stance stance)
          Creates a new StanceTradeItem instance.
 

Uses of Player.Stance in net.sf.freecol.server.control
 

Methods in net.sf.freecol.server.control with parameters of type Player.Stance
 void ServerModelController.setStance(Player first, Player second, Player.Stance stance)
          Updates stances.