else addFormElement("qti.title", new StaticTextElement("qti.title", "-"));
// extract objectives
HTMLTextAreaElement htmlTA = new HTMLTextAreaElement("qti.objectives", 10, 60);
htmlTA.setReadOnly(true);
Element el_objectives = (Element)doc.selectSingleNode("//questestinterop/assessment/objectives");
if (el_objectives != null) {
Element el_mat = (Element)el_objectives.selectSingleNode("material/mattext");
if (el_mat != null)
htmlTA.setValue(el_mat.getTextTrim());
} else htmlTA.setValue("-");