Class ObjectInfo

java.lang.Object
  |
  +--ObjectInfo

public class ObjectInfo
extends java.lang.Object

This class is used to represent the object of the game in a more abstract manner. For every object the following information is stored:

Version:
1.0
Author:
Gerald Kuehne, Markus Beier

Field Summary
 double direction
          The direction in which the object was perceived
 double distance
          The distance in which the object was perceived
 java.lang.String objectName
          The name of the object
 int time
          The time when the object has been perceived
 
Constructor Summary
ObjectInfo()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

time

public int time
The time when the object has been perceived

objectName

public java.lang.String objectName
The name of the object

distance

public double distance
The distance in which the object was perceived

direction

public double direction
The direction in which the object was perceived
Constructor Detail

ObjectInfo

public ObjectInfo()