t.processingInstruction(Result.PI_DISABLE_OUTPUT_ESCAPING, "");
t.characters(new char[]{'<','M','/', '>'}, 0, 4);
t.processingInstruction(Result.PI_ENABLE_OUTPUT_ESCAPING, "");
t.characters(new char[]{'y','&','z'}, 0, 3);
t.endElement("", "out", "out");
t.endDocument();
}
/**
* An example showing how to serialize a program-constructed DOM tree.