ntp.getString(cqp.getLocalCode(), utf8sp);
printString(ps, utf8sp);
}
private void printDocumentNode(PrintStream ps, TaggedValuePointable tvp) {
DocumentNodePointable dnp = pp.takeOne(DocumentNodePointable.class);
SequencePointable seqp = pp.takeOne(SequencePointable.class);
try {
ps.append("<?xml version=\"1.0\"?>\n");
tvp.getValue(dnp);
dnp.getContent(ntp, seqp);
printSequence(ps, seqp);
} finally {
pp.giveBack(seqp);
pp.giveBack(dnp);
}