% def title = packageDoc.nameWithDots() + " Class Hierarchy" + (props.windowTitle ? " (${props.windowTitle})" : "") %>
<% if (hasClasses) { %>
Class Hierarchy
- class java.lang.Object
<% classRoot.children.each { out << renderNode(it) } %>
<% } %>
<% if (hasInterfaces) { %>
Interface Hierarchy
<% interfaceRoot.children.each { out << renderNode(it) } %>
<% } %>
<% if (!hasClasses && !hasInterfaces) { %>
No documented types in this package.
<% } %>