((IElement) fAuthor).fromXML(child);
}
// UDPATE DESCRIPTION IS OPTONAL - can only be one, ignore subsequent repetitions
if(tag.equals(IW3CXMLConfiguration.UPDATE_ELEMENT) && fUpdate == null && child.getNamespace().getURI().equals(IW3CXMLConfiguration.MANIFEST_NAMESPACE)) {
UpdateDescription update = new UpdateDescription();
update.fromXML(child);
// It must have a valid HREF attribute, or it is ignored
if (update.getHref() != null) fUpdate = update.getHref();
}
// LICENSE IS OPTIONAL - can be many
if(tag.equals(IW3CXMLConfiguration.LICENSE_ELEMENT)) {
LicenseEntity aLicense = new LicenseEntity();