com.sun.syndication.feed.module.georss.geometries
Class Position

java.lang.Object
  extended by com.sun.syndication.feed.module.georss.geometries.Position
All Implemented Interfaces:
java.lang.Cloneable

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

A two dimensional position represented by latitude and longitude decimal degrees in WGS84

Author:
runaas

Constructor Summary
Position()
          Creates a new instance of Position
Position(double latitude, double longitude)
          Create Position from a pair of coordinate values
 
Method Summary
 java.lang.Object clone()
           
 boolean equals(java.lang.Object obj)
           
 double getLatitude()
           
 double getLongitude()
           
 void setLatitude(double latitude)
          Set the latitude
 void setLongitude(double longitude)
          Set the longitude
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Position

public Position()
Creates a new instance of Position


Position

public Position(double latitude,
                double longitude)
Create Position from a pair of coordinate values

Parameters:
latitude -
longitude -
Method Detail

clone

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

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

getLatitude

public double getLatitude()
Returns:
latitude

setLatitude

public void setLatitude(double latitude)
Set the latitude

Parameters:
latitude - the new latitude

getLongitude

public double getLongitude()
Returns:
longitude

setLongitude

public void setLongitude(double longitude)
Set the longitude

Parameters:
longitude - the new longitude