com.partnersoft.gps.postprocessing
Class SurveyedLocation

java.lang.Object
  extended by com.partnersoft.gps.postprocessing.SurveyedLocation
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class SurveyedLocation
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable

See Also:
Serialized Form

Constructor Summary
SurveyedLocation()
           
SurveyedLocation(java.lang.String inGPSID, double inLongitude, double inLatitude)
           Note about GPS ID: it is null if the location was surveyed with a GPS, but doesn't have any postprocessing information associated with it.
 
Method Summary
 java.lang.Object clone()
           
 java.lang.String getGPSID()
           
 double getLatitude()
           
 double getLongitude()
           
 boolean isValid()
           
 void setGPSID(java.lang.String inGPSID)
           
 void setLatitude(double inLatitude)
           
 void setLongitude(double inLongitude)
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SurveyedLocation

public SurveyedLocation()

SurveyedLocation

public SurveyedLocation(java.lang.String inGPSID,
                        double inLongitude,
                        double inLatitude)

Note about GPS ID: it is null if the location was surveyed with a GPS, but doesn't have any postprocessing information associated with it. For example, the NMEA GPS creates locations with null GPS ID's.

Parameters:
inGPSID -
inLongitude -
inLatitude -
Method Detail

getGPSID

public java.lang.String getGPSID()

setGPSID

public void setGPSID(java.lang.String inGPSID)

getLongitude

public double getLongitude()

setLongitude

public void setLongitude(double inLongitude)

getLatitude

public double getLatitude()

setLatitude

public void setLatitude(double inLatitude)

isValid

public boolean isValid()

clone

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