Back to project page kitty-compass.
The source code is released under:
Apache License
If you think the Android project kitty-compass listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.google.glassware.model; //from ww w.jav a 2s .co m /** * This class represents a point of interest that has geographical coordinates (latitude and * longitude) and a name that is displayed to the user. */ public class Place { private final double mLatitude; private final double mLongitude; private final String mName; /** * Initializes a new place with the specified coordinates and name. * * @param latitude the latitude of the place * @param longitude the longitude of the place * @param name the name of the place */ public Place(double latitude, double longitude, String name) { mLatitude = latitude; mLongitude = longitude; mName = name; } /** * Gets the latitude of the place. * * @return the latitude of the place */ public double getLatitude() { return mLatitude; } /** * Gets the longitude of the place. * * @return the longitude of the place */ public double getLongitude() { return mLongitude; } /** * Gets the name of the place. * * @return the name of the place */ public String getName() { return mName; } }