Uses of Class
org.jogre.common.JogreModel

Packages that use JogreModel
org.jogre.awt This package contains visual classes which aid the creation of games. 
org.jogre.client This package contains non-visual classes which only the client makes use of including the network connection, the game model and controller. 
org.jogre.common This package contains classes which are common to both a client or a server. 
org.jogre.server This package contains server specific classes. 
 

Uses of JogreModel in org.jogre.awt
 

Fields in org.jogre.awt declared as JogreModel
protected  JogreModel JogreTableFrame.gameModel
           
 

Methods in org.jogre.awt that return JogreModel
 JogreModel JogreTableFrame.getModel()
          Accessor for the game controller.
 

Methods in org.jogre.awt with parameters of type JogreModel
 void JogreTableFrame.setupMVC(JogreModel model, JogreComponent mainView, JogreController controller)
          Sets up the MVC for this table.
 

Uses of JogreModel in org.jogre.client
 

Fields in org.jogre.client declared as JogreModel
protected  JogreModel JogreController.model
          Link to the game model.
 

Constructors in org.jogre.client with parameters of type JogreModel
JogreController(JogreModel model, JogreComponent JogreComponent)
          Default constructor class which doesn't set up the network connection.
 

Uses of JogreModel in org.jogre.common
 

Methods in org.jogre.common that return JogreModel
 JogreModel Table.getModel()
          Retrieve the model from the server (if its being used).
 

Methods in org.jogre.common with parameters of type JogreModel
 void Table.setModel(JogreModel model)
          Set the game data.
 

Uses of JogreModel in org.jogre.server
 

Methods in org.jogre.server that return JogreModel
abstract  JogreModel JogreServer.getJogreModel()
          Set the correct data for the Server.