/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
if(attribute.getLocalName().equals(FunctionType.FUNCTION_ID_ATTRIB_NAME)){
FunctionType functionType = (FunctionType) xmlObject;
functionType.setFunctionId(DatatypeHelper.safeTrimOrNullString(attribute.getValue()));
} else {
super.processAttribute(xmlObject, attribute);
}
}