blob: c55c16c6ccec140c091aae7b4a150d8a73df060b [file] [log] [blame]
<%
String result = new String();
for (EAnnotation annotation : ((EModelElement) _element).getEAnnotations()) {
if (annotation.getSource() == "http://www.eclipse.org/emf/2002/GenModel"
|| annotation.getSource() == "http://www.eclipse.org/egf/2010/GenDoc") {
for (Map.Entry<String, String> detail : annotation.getDetails().entrySet()) {
if (detail.getKey()== "documentation" && detail.getValue() != "") {
result = result + detail.getValue();
}
}
}
}
%>
<% if (result.length() > 0) {%>
<p><%= result %></p>
<% } // end if %>