Back to project page bodyguard.
The source code is released under:
GNU General Public License
If you think the Android project bodyguard 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.example.bodyguard; //from w ww . j av a 2 s . co m import java.io.Serializable; import java.util.List; import com.google.api.client.util.Key; /** Implement this class from "Serializable" * So that you can pass this class Object to another using Intents * Otherwise you can't pass to another actitivy * */ public class PlacesList implements Serializable { /** * */ private static final long serialVersionUID = -8532662678084560950L; @Key public String status; @Key public List<Place> results; }