Class OctPoint

Class OctPoint

java.lang.Object
   |
   +----PersistentObject
           |
           +----OctObject
                   |
                   +----OctPoint

public class OctPoint
extends OctObject
Declaration for OctPoint object

Variable Index

 o className
 o octFields
 o x
The x-coordinate of the OctPoint
 o y
The y-coordinate of the OctPoint

Constructor Index

 o OctPoint(OctCell)
Constructor of an OctPoint (for loading from data back-end server)
 o OctPoint(OctCell, int, int)
Constructor of an OctPoint (for dynamic creation)

Method Index

 o GetObjFields()
Does not require filling since the object has no object fields
 o Load(int)
Loads the fields of an OctPoint from data back-end
 o Load(String)
Should not be called
 o SetObjFields()
Performs the neccessary overhead to allow this object to be manipulated over the network

Variables

 o className
  public final static String className
 o octFields
  public final static int octFields
 o x
  public int x
The x-coordinate of the OctPoint
 o y
  public int y
The y-coordinate of the OctPoint

Constructors

 o OctPoint
  public OctPoint(OctCell octCell,
                  int x,
                  int y)
Constructor of an OctPoint (for dynamic creation)
Parameters:
octCell - The OctCell that the object resides in
x - The x-coordinate of the OctPoint
y - The y-coordinate of the OctPoint
 o OctPoint
  public OctPoint(OctCell octCell)
Constructor of an OctPoint (for loading from data back-end server)
Parameters:
octCell - The OctCell that the object resides in

Methods

 o SetObjFields
  protected void SetObjFields()
Performs the neccessary overhead to allow this object to be manipulated over the network
Overrides:
SetObjFields in class PersistentObject
 o Load
  public boolean Load(int intId)
Loads the fields of an OctPoint from data back-end
Parameters:
objectId - The String Id for the object (may not be applicable)
intId - The integer (unique) Id for the object
Overrides:
Load in class PersistentObject
 o Load
  public boolean Load(String strId)
Should not be called
Overrides:
Load in class PersistentObject
 o GetObjFields
  protected int GetObjFields()
Does not require filling since the object has no object fields
Overrides:
GetObjFields in class PersistentObject