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; /*ww w . j a va2 s. c om*/ public class Chapter { private int chapterId; private String chapterPath; private int chapterNr; private int chapterDuration; public Chapter (int id, String path, int nr, int duration ){ chapterId = id; chapterPath = path; chapterNr = nr; chapterDuration = duration; } public int Id() { return chapterId; } public String Path() { return chapterPath; } public int Nr() { return chapterNr; } public int Duration() { return chapterDuration; } }