}
public TreeMap<Integer,ClientChapter> getAllChapterList() {
TreeMap<Integer,ClientChapter> resultMap = new TreeMap<Integer,ClientChapter>();
for (Chapter chapter:chapterFactory.getAllChapterList()) {
resultMap.put(chapter.getChapterNo(),new ClientChapter(chapter.getChapterNo(),chapter.getSectionCount(), chapter.getTitle(),chapter.getTransliteration()));
}
return resultMap;
}