}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
CombinerParametersType combinerParametersType = (CombinerParametersType) parentXMLObject;
if(childXMLObject instanceof CombinerParameterType){
combinerParametersType.getCombinerParameters().add((CombinerParameterType)childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}