Back to project page android-google-places-master.
The source code is released under:
MIT License
If you think the Android project android-google-places-master listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from w w w. java2 s . com */ package com.a2plab.googleplaces.result; import java.util.List; import com.a2plab.googleplaces.models.Photo; import com.google.api.client.util.Key; /** * @author Giuseppe Mastroeni - aka: Kataklisma E-Mail: m.giuseppe@a2plab.com * */ public class PhotoResult extends Result { @Key private List<Photo> photos; /* * (non-Javadoc) * * @see com.a2plab.googleplaces.result.Result#getResults() */ @Override public List<Photo> getResults() { return photos; } }