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 va2 s . c om import java.io.Serializable; import java.util.List; /** * ??bean<br> * {@link #image_id}??id<br> * {@link #path_absolute} ?????<br> * {@link #path_file} ???????<br> * {@link #name_album} ??????<br> */ public class AlbumInfo implements Serializable{ private int image_id; private String path_absolute; private String path_file; private String name_album; private List<PhotoInfo> list; public int getImage_id() { return image_id; } public void setImage_id(int image_id) { this.image_id = image_id; } public String getPath_absolute() { return path_absolute; } public void setPath_absolute(String path_absolute) { this.path_absolute = path_absolute; } public String getPath_file() { return path_file; } public void setPath_file(String path_file) { this.path_file = path_file; } public String getName_album() { return name_album; } public void setName_album(String name_album) { this.name_album = name_album; } public List<PhotoInfo> getList() { return list; } public void setList(List<PhotoInfo> list) { this.list = list; } }