Back to project page SELP2013.
The source code is released under:
License ======= This work is licensed under the BSD 2-clause license as follows. # BSD 2-clause license Copyright (c) 2013, Sky Welch All rights reserved. Redistribution and use in source and ...
If you think the Android project SELP2013 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 uk.co.skywelch.selp2013; /* www. ja va 2 s . c o m*/ public class StringListItem { private String text; private boolean issection; StringListItem(String text, boolean issection) { this.text = text; this.issection = issection; } String getText() { return text; } public boolean isSection() { return issection; } }