Back to project page edu-video-client.
The source code is released under:
Apache License
If you think the Android project edu-video-client 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.ngm.explaintome.data; // ww w. j a va 2 s. c o m public class Answer extends ModelElement{ private String htmlText; public String getText() { return htmlText; } public void setText(String htmlText) { this.htmlText = htmlText; } }