|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.engine.ProjectDocument
public abstract class ProjectDocument
An abstract class implementing the generic content of a project. The derived class must override the Constructor to load the parameters from a file and the saveDocument() method to save parameters to file. This class is abstract to uncouple its internal parameter representation and its external file format.
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.
Field Summary | |
---|---|
java.util.ArrayList |
classPath
The list of the directories or jar files representing the local classpath. |
java.util.Map |
locationBag
The list of sizes and positions of the windows built by models. |
short |
majorVersion
Major version of the engine stored this document. |
java.lang.String |
projectDescription
The project description. |
java.io.File |
projectFile
The file associated with this document. |
java.lang.String |
projectName
The project name. |
boolean |
randomSeedGeneration
Decides if the random seed must be generated by simulation engine or not. |
java.util.ArrayList |
runningModels
The list of the ISimModel classes to load into simulation engine. |
boolean |
runsInRealTime
Enabled if model time is based on real time. |
long |
seed
If randomSeedGeneration is true this variable is ignored, otherwise the engine's random seed is set to this value. |
int |
timeUnit
Time unit used by the project. |
Constructor Summary | |
---|---|
ProjectDocument()
Construct a project document with no name. |
|
ProjectDocument(java.lang.String projectName)
Standard project document constructor. |
Method Summary | |
---|---|
void |
addLocationBag(java.lang.String owner,
java.lang.String title,
java.lang.String commaPositions)
Add window size and postion entry into the location bag. |
void |
executeProject(SimEngine engine)
Load the project into the simulation engine. |
boolean |
isCreatable()
Return if project is creatable, using the executeProject method. |
abstract void |
saveDocument()
Store the document on the projectFile file. |
void |
saveDocument(java.io.File file)
Store the document in the given file. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public java.util.ArrayList classPath
public java.util.Map locationBag
public short majorVersion
public java.lang.String projectDescription
public java.io.File projectFile
public java.lang.String projectName
public boolean randomSeedGeneration
public java.util.ArrayList runningModels
public boolean runsInRealTime
public long seed
public int timeUnit
Constructor Detail |
---|
public ProjectDocument()
public ProjectDocument(java.lang.String projectName)
projectName
- The project name.Method Detail |
---|
public void addLocationBag(java.lang.String owner, java.lang.String title, java.lang.String commaPositions)
owner
- The SimModel owner's id.title
- The window title.commaPositions
- A string like "0,0,10,10", representing locationX,
locationY, sizeX, sizeY.public void executeProject(SimEngine engine)
engine
- The current simulation engine.public boolean isCreatable()
public abstract void saveDocument()
public void saveDocument(java.io.File file)
file
- The file to be saved.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |