Back to project page Assignment1.
The source code is released under:
GNU General Public License
If you think the Android project Assignment1 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.example.kwicento_count; // w w w. j a v a 2 s. c o m import java.io.Serializable; import java.util.ArrayList; public class Counter implements Serializable{ private static final long serialVersionUID = 1L; protected int count; protected String name; protected ArrayList<Counts> countsList; public Counter() { countsList = null; count = 0; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } }