boolean result = true;
for (EmbedAttribute attribute : data.getAttributes())
{
if (!setAttribute(attribute))
{
problems.add(new EmbedUnsupportedAttributeProblem(location, attribute, (EmbedMIMEType)data.getAttribute(EmbedAttribute.MIME_TYPE)));
result = false;
}
}
if (!checkAttributeValues(location, problems))