feynman.framework.system
Class CartesianObject

java.lang.Object
  |
  +--feynman.framework.system.PhysicalObject
        |
        +--feynman.framework.system.CartesianObject

public abstract class CartesianObject
extends PhysicalObject

Sub-class to define a PhysicalObject for the CartesianSystem.

Version:
$Revision: 1.1.1.1 $ $Date: 2002/11/12 02:25:42 $
Author:
Wes Bailey

Constructor Summary
CartesianObject()
           
 
Method Summary
 double getX()
          Use this method to retrieve the X coordinate value of the object.
 double getY()
          Use this method to retrieve the Y coordinate value of the object.
 double getZ()
          Use this method to retrieve the Z coordinate value of the object.
 void setX(double x)
          Method to define the X coordinate of the object.
 void setY(double y)
          Method to define the Y coordinate of the object.
 void setZ(double z)
          Method to define the Z coordinate of the object.
 
Methods inherited from class feynman.framework.system.PhysicalObject
equals, getId, setId
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CartesianObject

public CartesianObject()
Method Detail

setX

public final void setX(double x)
Method to define the X coordinate of the object.
Note: This method should NOT be overriden in the user implementation.

getX

public final double getX()
Use this method to retrieve the X coordinate value of the object.
Note: This method should NOT be overriden in the user implementation.

setY

public final void setY(double y)
Method to define the Y coordinate of the object.
Note: This method should NOT be overriden in the user implementation.

getY

public final double getY()
Use this method to retrieve the Y coordinate value of the object.
Note: This method should NOT be overriden in the user implementation.

setZ

public final void setZ(double z)
Method to define the Z coordinate of the object.
Note: This method should NOT be overriden in the user implementation.

getZ

public final double getZ()
Use this method to retrieve the Z coordinate value of the object.
Note: This method should NOT be overriden in the user implementation.