Back to project page Do-not-get-annoyed.
The source code is released under:
Apache License
If you think the Android project Do-not-get-annoyed 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 mn100013d.pmu.models; /* www.j a v a 2s. c o m*/ import java.io.Serializable; public class Result implements Serializable{ private String name; private String eaten; private String beenEaten; public Result(String name, String eaten, String beenEaten){ this.name = name; this.eaten = eaten; this.beenEaten = beenEaten; } @Override public String toString() { return name + " "+ eaten + " " + beenEaten; } }