Back to project page GeoNote.
The source code is released under:
Apache License
If you think the Android project GeoNote 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 geonote.app.Model; /*www .j ava 2 s .c o m*/ import java.io.Serializable; import com.google.api.client.util.Key; public class PlaceDetails implements Serializable { @Key public String status; @Key public Place result; @Override public String toString() { if (result!=null) { return result.toString(); } return super.toString(); } }