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 w ww . j a va 2s . co m*/ public class AppSettings { private String fontStyle = null; private Integer fontSize = null; private Integer textSpeed = null; private String theme = null; public AppSettings(){ } public String getFontStyle() { return fontStyle; } public void setFontStyle(String fontStyle) { this.fontStyle = fontStyle; } public Integer getFontSize() { return fontSize; } public void setFontSize(Integer fontSize) { this.fontSize = fontSize; } public Integer getTextSpeed() { return textSpeed; } public void setTextSpeed(Integer textSpeed) { this.textSpeed = textSpeed; } public String getTheme() { return theme; } public void setTheme(String theme) { this.theme = theme; } }