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]));