org.opengts.util
Class GeoOffset

java.lang.Object
  extended by org.opengts.util.GeoOffset
All Implemented Interfaces:
java.lang.Cloneable

public class GeoOffset
extends java.lang.Object
implements java.lang.Cloneable

A container for a single latitude/longitude offset value pair


Constructor Summary
GeoOffset(double ofsLat, double ofsLon)
          Constructor
GeoOffset(GeoOffset gb)
          Copy Constructor
 
Method Summary
 java.lang.Object clone()
          Returns a clone of this GeoOffset
 double getOffsetLatitude()
          Gets the Latitude offset
 double getOffsetLongitude()
          Gets the Longitude offset
 void setOffsetLatitude(double dLat)
          Sets the Latitude offset
 void setOffsetLongitude(double dLon)
          Sets the Longitude offset
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GeoOffset

public GeoOffset(double ofsLat,
                 double ofsLon)
Constructor

Parameters:
ofsLat - The latitude offset
ofsLon - The longitude offset

GeoOffset

public GeoOffset(GeoOffset gb)
Copy Constructor

Parameters:
gb - The other GeoOffset
Method Detail

clone

public java.lang.Object clone()
Returns a clone of this GeoOffset

Overrides:
clone in class java.lang.Object
Returns:
A clone of this GeoOffset

setOffsetLatitude

public void setOffsetLatitude(double dLat)
Sets the Latitude offset

Parameters:
dLat - The latitude offset

getOffsetLatitude

public double getOffsetLatitude()
Gets the Latitude offset

Returns:
The latitude offset

setOffsetLongitude

public void setOffsetLongitude(double dLon)
Sets the Longitude offset

Parameters:
dLon - The longitude offset

getOffsetLongitude

public double getOffsetLongitude()
Gets the Longitude offset

Returns:
The longitude offset