/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
if (childXMLObject instanceof XSString) {
DefaultsType defaultType = (DefaultsType) parentXMLObject;
defaultType.setXPathVersion((XSString) childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}