Class GISPoint

java.lang.Object
  |
  +--GISPoint

public class GISPoint
extends java.lang.Object

GISPoint class defines a point in the GIS.


Constructor Summary
GISPoint(float easting, float northing)
           
GISPoint(float easting, float northing, java.lang.Object attributes)
           
GISPoint(GISPoint point)
           
 
Method Summary
 java.lang.Object getAttributes()
           
 float getEasting()
           
 float getNorthing()
           
 void setAttributes(java.lang.Object attributes)
           
 void setEasting(float easting)
           
 void setNorthing(float northing)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GISPoint

public GISPoint(float easting,
                float northing)

GISPoint

public GISPoint(float easting,
                float northing,
                java.lang.Object attributes)

GISPoint

public GISPoint(GISPoint point)
Method Detail

getAttributes

public java.lang.Object getAttributes()

setAttributes

public void setAttributes(java.lang.Object attributes)

getEasting

public float getEasting()

getNorthing

public float getNorthing()

setEasting

public void setEasting(float easting)

setNorthing

public void setNorthing(float northing)

toString

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