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 w w . j av a 2s. c o m*/ import java.io.Serializable; public class Character implements Serializable { public String name; public String altname; public String altname2; public String duration; public String query; @Override public String toString() { StringBuilder result = new StringBuilder(); String NL = System.getProperty("line.separator"); result.append(((Object)this).getClass().getName() + " {" + NL); result.append(" name: " + this.name + NL); result.append(" altname: " + this.altname + NL); result.append(" altname2: " + this.altname2 + NL); result.append(" duration: " + this.duration + NL); result.append(" query: " + this.query + NL); result.append("}" + NL); return result.toString(); } }