in apache-whisker-xml/src/main/java/org/apache/creadur/whisker/fromxml/JDomBuilder.java [275:285]
private String copyrightNotice(final Element element) {
final String result;
final Element copyrightNoticeElement = element
.getChild(COPYRIGHT_NOTICE_NAME);
if (copyrightNoticeElement == null) {
result = null;
} else {
result = copyrightNoticeElement.getTextTrim();
}
return result;
}