Back to project page on-the-hook.
The source code is released under:
MIT License
If you think the Android project on-the-hook 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.yoandinkov.onthehook.models; //w w w. j a v a 2 s .c o m public class WaterLocation { private double distance; private int locationId; private int placeId; private String placeName; public double getDistance() { return distance; } public void setDistance(double distance) { this.distance = distance; } public int getLocationId() { return locationId; } public void setLocationId(int locationId) { this.locationId = locationId; } public int getPlaceId() { return placeId; } public void setPlaceId(int placeId) { this.placeId = placeId; } public String getPlaceName() { return placeName; } public void setPlaceName(String placeName) { this.placeName = placeName; } }