in apache-whisker-xml/src/main/java/org/apache/creadur/whisker/fromxml/JDomBuilder.java [130:140]
public Organisation organisation(final Element element,
final Map<String, Organisation> organisationsById)
throws MissingIDException {
final String id = element.getAttributeValue("id");
if (organisationsById.containsKey(id)) {
return organisationsById.get(id);
} else {
throw new MissingIDException(ORGANISATION_ELEMENT_NAME,
element.getName(), id);
}
}