Back to project page AStory.
The source code is released under:
Apache License
If you think the Android project AStory 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.Litterfeldt.AStory.models; /*from w w w . jav a2 s . co m*/ public class SaveState { private int bookId; private int chapterId; private int time_pos; public SaveState (int bookID, int chapterID, int timePos){ bookId = bookID; chapterId = chapterID; time_pos = timePos; } public int bookId() { return bookId; } public int chapterId() { return chapterId; } public int time_pos() { return time_pos; } }