in apache-whisker-model/src/main/java/org/apache/creadur/whisker/model/NoticeCollator.java [46:54]
public void visit(final Resource resource) {
final String noticeId = resource.getNoticeId();
if (noticeId != null) {
if (!this.resourcesByNoticeId.containsKey(noticeId)) {
this.resourcesByNoticeId.put(noticeId, new TreeSet<Resource>());
}
this.resourcesByNoticeId.get(noticeId).add(resource);
}
}