public String primaryCopyrightNotice()

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


	public String primaryCopyrightNotice(final Document document) {
		final String result;
		final Element copyrightElement = getPrimaryLicenseElement(document)
				.getChild(COPYRIGHT_NOTICE_NAME);
		if (copyrightElement == null) {
			result = null;
		} else {
			result = copyrightElement.getTextTrim();
		}
		return result;
	}