Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

feynman.framework.system
Class CartesianObject  view CartesianObject download CartesianObject.java

java.lang.Object
  extended byfeynman.framework.system.PhysicalObject
      extended byfeynman.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 $

Field Summary
private  double x
           
private  double y
           
private  double z
           
 
Fields inherited from class feynman.framework.system.PhysicalObject
 
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
 

Field Detail

x

private double x

y

private double y

z

private double z
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.