Package qurtext.client

Examples of qurtext.client.ClientChapter


  }

  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;
  }
View Full Code Here

TOP

Related Classes of qurtext.client.ClientChapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.