if (result != SKIP_ELEMENT_BODY) {
// Check to see if the protocol would like us to skip the element
// body. If it does then return SKIP_ELEMENT_BODY otherwise return
// result.
VolantisProtocol protocol = pageContext.getProtocol();
result = protocol.skipElementBody() ? SKIP_ELEMENT_BODY : result;
}
return result;
}