Back to project page SpeedReading.
The source code is released under:
GNU General Public License
If you think the Android project SpeedReading 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 info.energix.speedreading.models; //from ww w .jav a2 s . c om public class Document { private String title = ""; private String path = ""; private Integer wordCount = 0; private Integer wordCurrent = 0; public Document(){} public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public Integer getWordCount() { return wordCount; } public void setWordCount(Integer wordCount) { this.wordCount = wordCount; } public Integer getWordCurrent() { return wordCurrent; } public void setWordCurrent(Integer wordCurrent) { this.wordCurrent = wordCurrent; } }