/* 120 */ if (content != null)
/* 121 */ for (iter = content.iterator(); iter.hasNext(); ) {
/* 122 */ Object object = iter.next();
/* */
/* 124 */ if ((object instanceof String)) {
/* 125 */ Text text = getDocumentFactory().createText((String)object);
/* */
/* 127 */ visitor.visit(text);
/* */ } else {
/* 129 */ Node node = (Node)object;
/* 130 */ node.accept(visitor);