Back to project page MabLidsAndroid.
The source code is released under:
MIT License
If you think the Android project MabLidsAndroid 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.mikerandrup.essaycomposable.components; //from w w w . java 2s. c o m public class BaseComponent { protected String value; public void setValue(String val) { value = val; } public String getWordType() { return this.getClass().getSimpleName().toString(); } public boolean isNotAnswered() { return value == null; } @Override public String toString() { return isNotAnswered() ? "" : value; } }