public License primaryLicense()

in apache-whisker-xml/src/main/java/org/apache/creadur/whisker/fromxml/JDomBuilder.java [432:442]


	public License primaryLicense(Document document,
			Map<String, License> licenses) {
		final String idAttributeValue = getPrimaryLicenseElement(document)
				.getAttributeValue("id");
		final License results = licenses.get(idAttributeValue);
		if (results == null) {
			throw new MissingIDException(LICENSE_ELEMENT_NAME,
					PRIMARY_LICENSE_NAME, idAttributeValue);
		}
		return results;
	}