}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
SubjectType subjectType = (SubjectType) parentXMLObject;
if(childXMLObject instanceof SubjectMatchType){
subjectType.getSubjectMatches().add((SubjectMatchType)childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}