}
// LICENSE IS OPTIONAL - can be many
if(tag.equals(IW3CXMLConfiguration.LICENSE_ELEMENT)) {
ILicenseEntity aLicense = new LicenseEntity();
aLicense.fromXML(child);
// add it to our list only if its not a repetition of an
// existing entry for the locale and the language tag is valid
if (isFirstLocalizedEntity(fLicensesList,aLicense) && aLicense.isValid()) fLicensesList.add(aLicense);
}