super(targetNamespaceURI, targetLocalName);
}
/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
SubjectType attrib = (SubjectType) xmlObject;
if (attribute.getLocalName().equals(SubjectType.SUBJECT_CATEGORY_ATTTRIB_NAME)) {
attrib.setSubjectCategory(attribute.getValue());
} else {
super.processAttribute(xmlObject, attribute);
}
}