Back to project page doubanbook4android.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project doubanbook4android 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.study.doubanbook_for_android.model; // www.ja v a2 s.c o m import java.io.Serializable; /** * subclass of book item * * @author tezuka-pc * */ public class ImageItem implements Serializable { /** * */ private static final long serialVersionUID = -6298352661736246847L; private String small;// "http:\/\/img1.douban.com\/spic\/s1001902.jpg", private String large;// "http:\/\/img1.douban.com\/lpic\/s1001902.jpg", private String medium;// "http:\/\/img1.douban.com\/mpic\/s1001902.jpg" public String getSmall() { return small; } public void setSmall(String small) { this.small = small; } public String getLarge() { return large; } public void setLarge(String large) { this.large = large; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } }