models
Class Point

java.lang.Object
  extended by models.Point

public class Point
extends java.lang.Object

Class Point


Constructor Summary
Point()
          Empty constructor of class
Point(double lon, double lat)
          Constructor of class
 
Method Summary
 double getLat()
           
 double getLon()
           
 void setLat(double lat)
          set latitude of point
 void setLon(double lon)
          set longitude of point
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Point

public Point(double lon,
             double lat)
Constructor of class

Parameters:
lon - longitude of point
lat - latitude of point

Point

public Point()
Empty constructor of class

Method Detail

getLon

public double getLon()
Returns:
longitude of point

setLon

public void setLon(double lon)
set longitude of point

Parameters:
lon - longitude of point

getLat

public double getLat()
Returns:
latitude of point

setLat

public void setLat(double lat)
set latitude of point

Parameters:
lat - latitude of point