Back to project page crtaci.
The source code is released under:
GNU General Public License
If you think the Android project crtaci 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.github.gen2brain.crtaci.entities; //w ww. j av a 2s .co m import java.io.Serializable; public class Cartoon implements Serializable { public String id; public String character; public String title; public String formattedTitle; public Integer episode; public Integer season; public String service; public String url; public String thumbSmall; public String thumbMedium; public String thumbLarge; @Override public String toString() { StringBuilder result = new StringBuilder(); String NL = System.getProperty("line.separator"); result.append(((Object)this).getClass().getName() + " {" + NL); result.append(" id: " + this.id + NL); result.append(" character: " + this.character + NL); result.append(" title: " + this.title + NL); result.append(" formattedTitle: " + this.formattedTitle + NL); result.append(" episode: " + this.episode + NL); result.append(" season: " + this.season + NL); result.append(" service: " + this.service + NL); result.append(" url: " + this.url + NL); result.append(" thumbSmall: " + this.thumbSmall + NL); result.append(" thumbMedium: " + this.thumbMedium + NL); result.append(" thumbLarge: " + this.thumbLarge + NL); result.append("}" + NL); return result.toString(); } }