Back to project page ArrecebaAndroid.
The source code is released under:
GNU General Public License
If you think the Android project ArrecebaAndroid 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 br.com.projetointegrador.TO; // w ww .j av a2s . co m public class Interesse { public int InteresseId; public String Nome = ""; public boolean checked = false; public Interesse() {} public Interesse(String nome) { this.Nome = nome; } public Interesse(String nome , boolean checked) { this.Nome = nome; this.checked = checked; } public String toString() { return Nome; } public void toggleChecked() { checked = !checked; } }