|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.engine.SimModel
public abstract class SimModel
This abstract class must be overridden by each simulation model. It gives the user some useful features. It keeps a reference to the event list, has got a list of statistic boxes, remember the SimModel's name.
To build a simulation model it is necessary to override two methods:
The method setParameters() is called by engine when the model is loaded into
memory. It represent the phase of collecting parameters. If you want
to prompt a windows to let the user modify some parameters, you have to
put code in this method.
The method buildModel() is called when the user press the 'buildModels' button
after setting the right simulation parameters. During this phase objects, actions
and display widgets must be created. After that the simulation could start.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
SimModel()
|
Method Summary | |
---|---|
void |
addSimWindow(java.awt.Frame window)
Call the engine addSimWindow() method. |
void |
addSimWindow(javax.swing.JInternalFrame window)
Call the engine addSimWindow() method. |
abstract void |
buildModel()
Build model, creating objects, schedule items and graphics. |
void |
dispose()
Destroy some objects. |
java.lang.String |
getID()
Return a string describing model. |
java.lang.Class |
getObjectClass(java.lang.Object object)
Return the Class object representing the given object. |
java.lang.Class |
getObjectClass(java.lang.String className)
Search into the JVM an instance of the class with the given name. |
void |
setEventList(EventList event_list)
This method is used by engine to set the current event list. |
void |
setID(java.lang.String newID)
Set the model's name. |
abstract void |
setParameters()
Set simulation parameters before building model. |
void |
setPath(java.lang.String path)
Set the path of this class. |
void |
simulationEnd()
Do something at simulation end. |
java.lang.String |
toString()
Return the string representing model. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public SimModel()
Method Detail |
---|
public void addSimWindow(java.awt.Frame window)
addSimWindow
in interface ISimModel
window
- The frame window to add to the engine's windowBag.public void addSimWindow(javax.swing.JInternalFrame window)
window
- The frame window to add to the engine's windowBag.public abstract void buildModel()
buildModel
in interface ISimModel
public void dispose()
dispose
in interface ISimModel
public java.lang.String getID()
getID
in interface ISimModel
public java.lang.Class getObjectClass(java.lang.Object object)
object
- The object which class name is to be searched.
public java.lang.Class getObjectClass(java.lang.String className)
className
- The class name to search.
public void setEventList(EventList event_list)
setEventList
in interface ISimModel
event_list
- The event list used by engine.public void setID(java.lang.String newID)
setID
in interface ISimModel
newID
- A string describing uniquely the model's instance.public abstract void setParameters()
setParameters
in interface ISimModel
public void setPath(java.lang.String path)
setPath
in interface ISimModel
path
- The string representing the class path.public void simulationEnd()
simulationEnd
in interface ISimModel
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |