}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
ActionType actionType = (ActionType) parentXMLObject;
if(childXMLObject instanceof ActionMatchType){
actionType.getActionMatches().add((ActionMatchType)childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}