cz.cuni.pogamut.experiments
Class ExperimentResult

java.lang.Object
  extended by cz.cuni.pogamut.experiments.ExperimentResult
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
BasicExperiment.StatResult

public class ExperimentResult
extends java.lang.Object
implements java.io.Serializable

Results of the experiment.

See Also:
Serialized Form

Field Summary
protected  java.lang.String hostName
           
protected  long simulationTimeLength
           
protected  long systemTimeLength
           
 
Constructor Summary
ExperimentResult()
          Creates a new instance of Result
 
Method Summary
 java.lang.String getHostName()
           
 long getSimulationTimeLength()
           
 long getSystemTimeLength()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

systemTimeLength

protected long systemTimeLength

simulationTimeLength

protected long simulationTimeLength

hostName

protected java.lang.String hostName
Constructor Detail

ExperimentResult

public ExperimentResult()
Creates a new instance of Result

Method Detail

getSystemTimeLength

public long getSystemTimeLength()
Returns:
Length of simulation in millis. This time is measused in system time, this time is running even if the server where simulation is runnign is stoped.

getSimulationTimeLength

public long getSimulationTimeLength()
Returns:
Length of simulation in millis. This time is measured in simulation time. Simualtion time is paused when the experiment is paused.

getHostName

public java.lang.String getHostName()
Returns:
Network host name of the computer whre this experiment was executed.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object