177178179180181182183184
// Javadoc inherited. public void visit(Element element) { try { outputElement(element); } catch (IOException e) { throw new VisitorWrappingException(e); } }
187188189190191192193194
// Javadoc inherited. public void visit(Text text) { try { outputText(text); } catch (IOException e) { throw new VisitorWrappingException(e); } }
157158159160161162163164
166167168169170171172173
// Javadoc inherited. public void visit(Text text) { try { writer.outputText(text, encoder); } catch (IOException e) { throw new VisitorWrappingException(e); } }
176177178179180181182183
// Javadoc inherited. public void visit(Comment comment) { try { writer.outputComment(comment, encoder); } catch (IOException e) { throw new VisitorWrappingException(e); } }