Back to project page Avatar.
The source code is released under:
GNU General Public License
If you think the Android project Avatar 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.syw.avatar; // w w w . j a v a2 s. c o m import java.io.Serializable; import java.util.List; /** */ public class PhotoSerializable implements Serializable { private List<PhotoInfo> list; public PhotoSerializable() { } public PhotoSerializable(List<PhotoInfo> list) { this.list = list; } public List<PhotoInfo> getList() { return list; } public void setList(List<PhotoInfo> list) { this.list = list; } }