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