}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
CombinerParameterType combinerParameterType = (CombinerParameterType) parentXMLObject;
if(childXMLObject instanceof AttributeValueType){
combinerParameterType.setAttributeValue((AttributeValueType)childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}