199200201202203204205206207208209
Iterator i = getRootTopics().iterator(); while (i.hasNext()) { Topic topic = (Topic)i.next(); Element topicXML = topic.toXML(doc); topicSpace.appendChild(topicXML); } return topicSpace; }
422423424425426427428429430431432
Iterator i = getTopics().iterator(); while (i.hasNext()) { Topic topic = (Topic)i.next(); Element topicXML = topic.toXML(doc); root.appendChild(topicXML); } return root; }
203204205206207208209210211212213
427428429430431432433434435436437