Back to project page MathApp.
The source code is released under:
MIT License
If you think the Android project MathApp 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 ie.lc.mathApp; // w w w . j a v a2s .c om import java.io.Serializable; public class ScoreData implements Serializable { public int attempts; public int successes; public ScoreData() { // Do nothing } public ScoreData( int attempts, int successes ) { this.attempts = attempts; this.successes = successes; } }