@SuppressWarnings("deprecation")
public void fromXML(Element element, String[] locales) throws BadManifestException {
// check the namespace uri
if(!element.getNamespace().getURI().equals(IW3CXMLConfiguration.MANIFEST_NAMESPACE)){
throw new BadManifestException("'"+element.getNamespace().getURI()
+ "' is a bad namespace. (Should be '" + IW3CXMLConfiguration.MANIFEST_NAMESPACE +"')");
}
// IDENTIFIER IS OPTIONAL
fIdentifier = element.getAttributeValue(IW3CXMLConfiguration.ID_ATTRIBUTE);
if(fIdentifier == null){