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

Packages that use NationOptions
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 The main package of the server package tree. 
 

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

Methods in net.sf.freecol.client.control with parameters of type NationOptions
 void ConnectController.startMultiplayerGame(boolean publicServer, java.lang.String username, int port, NationOptions nationOptions)
          Starts a multiplayer server and connects to it.
 void ConnectController.startSingleplayerGame(java.lang.String username, NationOptions nationOptions)
          Starts a new singleplayer game by connecting to the server.
 

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

Constructors in net.sf.freecol.client.gui.panel with parameters of type NationOptions
PlayersTable(Canvas canvas, NationOptions nationOptions, Player myPlayer)
          The constructor that will add the items to this panel.
 

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

Methods in net.sf.freecol.common.model that return NationOptions
static NationOptions NationOptions.getDefaults()
          Describe getDefaults method here.
 NationOptions Game.getNationOptions()
          Get the NationOptions value.
 

Methods in net.sf.freecol.common.model with parameters of type NationOptions
 void Game.setNationOptions(NationOptions newNationOptions)
          Set the NationOptions value.
 

Uses of NationOptions in net.sf.freecol.server
 

Constructors in net.sf.freecol.server with parameters of type NationOptions
FreeColServer(boolean publicServer, boolean singleplayer, int port, java.lang.String name, NationOptions nationOptions)