Back to project page texthem.
The source code is released under:
GNU General Public License
If you think the Android project texthem 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.danielme.blog.demo.listviewcheckbox; //from w ww . j av a 2 s . co m /** * * @author danielme.com * */ public class Row { private String title; private String subtitle; private boolean checked; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getSubtitle() { return subtitle; } public void setSubtitle(String subtitle) { this.subtitle = subtitle; } public boolean isChecked() { return checked; } public void setChecked(boolean checked) { this.checked = checked; } }