Examples of FaqCategoryType


Examples of factbookxml.converter.schema.FaqCategoryType

  private void parseFaq() throws SQLException {
    String[][] faq = loadTable("faq", "category", "question", "answer");
    Map<String, FaqCategoryType> faqcats = new HashMap<String, FaqCategoryType>();
    for (String[] row : faq) {
      if (!faqcats.containsKey(row[0])) {
        FaqCategoryType fcat = new FaqCategoryType();
        faqcats.put(row[0], fcat);
        fcat.setTitle(row[0]);
        doc.getFaqCategory().add(fcat);
      }
      FaqCategoryType.Faq ff = new FaqCategoryType.Faq();
      ff.setQuestion(parseHypertextType(row[1]));
      ff.setAnswer(parseHypertextType(row[2]));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.