// BodyTag Support
XMLConsumer backup = this.currentConsumer;
if (tag instanceof BodyTag) {
SaxBuffer content = new SaxBuffer();
this.currentConsumer = content;
((BodyTag)tag).setBodyContent(new BodyContent(content, backup));
((BodyTag)tag).doInitBody();
}
do {
xmlDeserializer.deserialize(saxFragment);