/** * */ package kr.ac.kaist.resl.lilliput.model; /** * @author Jaewook Byun, Ph.D Student, Department of Computer Science, KAIST * @email bjw0829@kaist.ac.kr */ public class GeoPoint { private double longitude; private double latitude; private long timestamp; /** * @return the timestamp */ public long getTimestamp() { return timestamp; } /** * @param timestamp the timestamp to set */ public void setTimestamp(long timestamp) { this.timestamp = timestamp; } public GeoPoint(){} public GeoPoint(double longitude, double latitude) { this.longitude = longitude; this.latitude = latitude; } public GeoPoint(double longitude, double latitude, long timestamp) { this.longitude = longitude; this.latitude = latitude; this.timestamp = timestamp; } /** * @return the longitude */ public double getLongitude() { return longitude; } /** * @param longitude the longitude to set */ public void setLongitude(double longitude) { this.longitude = longitude; } /** * @return the latitude */ public double getLatitude() { return latitude; } /** * @param latitude the latitude to set */ public void setLatitude(double latitude) { this.latitude = latitude; } }