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; //from ww w.jav a 2 s . com import java.io.Serializable; import java.util.List; /** */ public class AlbumSerializable implements Serializable { /** * @fields serialVersionUID */ private static final long serialVersionUID = 1L; private List<AlbumInfo> list; public List<AlbumInfo> getList() { return list; } public void setList(List<AlbumInfo> list) { this.list = list; } }