com.partnersoft.v3x.apps.MapBrowser.locate
Class PointRecord

java.lang.Object
  extended by com.partnersoft.v3x.apps.MapBrowser.locate.PointRecord

public class PointRecord
extends java.lang.Object

A simple structure for efficient-but-still-kinda-OO management of point data. In general, create as few of these as possible and reuse them - this point library is intended to be fast, not encapsulated, and object creation is a real bottleneck.


Field Summary
 java.lang.String ID
           
 float x
           
 float y
           
 
Constructor Summary
PointRecord()
           
PointRecord(java.lang.String ID, float x, float y)
           
 
Method Summary
 java.lang.Object clone()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ID

public java.lang.String ID

x

public float x

y

public float y
Constructor Detail

PointRecord

public PointRecord()

PointRecord

public PointRecord(java.lang.String ID,
                   float x,
                   float y)
Method Detail

toString

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

clone

public java.lang.Object clone()
Overrides:
clone in class java.lang.Object