}
}
}
private void processGuid(Element element, INews news) {
IGuid guid = Owl.getModelFactory().createGuid(news, element.getText());
/* Check wether the Attributes are to be processed by a Contribution */
processNamespaceAttributes(element, guid);
/* Interpret Attributes */
List< ? > attributes = element.getAttributes();
for (Iterator< ? > iter = attributes.iterator(); iter.hasNext();) {
Attribute attribute = (Attribute) iter.next();
String name = attribute.getName().toLowerCase();
/* Check wether this Attribute is to be processed by a Contribution */
if (processAttributeExtern(attribute, guid))
continue;
/* Is Permalink */
else if ("ispermalink".equals(name)) //$NON-NLS-1$
guid.setPermaLink(Boolean.parseBoolean(attribute.getValue()));
}
}