Back to project page City-Outdoors-Android.
The source code is released under:
Copyright (c) 2012, Edinburgh Council All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are ...
If you think the Android project City-Outdoors-Android 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 uk.co.jarofgreen.cityoutdoors.Model; /**//w w w.ja va2 s .co m * * @author James Baster <james@jarofgreen.co.uk> * @copyright City of Edinburgh Council & James Baster * @license Open Source under the 3-clause BSD License * @url https://github.com/City-Outdoors/City-Outdoors-Android */ public class FeatureFavourite { private int featureID; private int favouriteAt; public FeatureFavourite(int featureID, int favouriteAt) { super(); this.featureID = featureID; this.favouriteAt = favouriteAt; } public int getFeatureID() { return featureID; } public void setFeatureID(int featureID) { this.featureID = featureID; } public int getFavouriteAt() { return favouriteAt; } public void setFavouriteAt(int favouriteAt) { this.favouriteAt = favouriteAt; } }