
org.codehaus.groovy.tools.template.package-frame.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-all Show documentation
Show all versions of groovy-all Show documentation
Groovy: A powerful, dynamic language for the JVM
${docPackage.name} ($title)
<%
int dotCount = docPackage.name.count('.')
String pathPref = '../' * (dotCount + 1)
%>
<% if (docPackage.docTypes.any { it.interface }) { %>
Interfaces
<% docPackage.docTypes.findAll { it.interface }.each { docType -> %>
- ${docType.simpleClassName}
<% } %>
<% } %>
<% if (docPackage.docTypes.any { !it.interface }) { %>
Classes
<% docPackage.docTypes.findAll { !it.interface }.each { docType -> %>
- ${docType.simpleClassName}
<% } %>
<% } %>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy