
org.codehaus.groovy.tools.template.index-all.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
Index ($title)
<% indexMap.each { it -> %>
${it.key}
<% } %>
<% indexMap.each { indexMapEntry -> %>
${indexMapEntry.key}
<% indexMapEntry.value.each { it -> %>
<% final String classUrl = it.docType.fullyQualifiedClassName.replaceAll('\\.','/') + '.html' %>
<% if (it.docMethod) { %>
<% final String methodUrl = classUrl + '#' + it.docMethod.name + '(' + it.docMethod.parametersSignature + ')' %>
- ${it.docMethod.name}(${it.docMethod.parametersSignature}) - Method in ${it.docType.interface ? 'interface' : 'class'} ${it.docType.packageName}.${it.docType.simpleClassName}
- ${it.docMethod.shortComment}
<% } else { %>
- ${it.docType.simpleClassName} - ${it.docType.interface ? 'Interface' : 'Class'} in ${it.docType.packageName}
- ${it.docType.shortComment}
<% } %>
<% } %>
<% } %>
<% indexMap.each { it -> %>
${it.key}
<% } %>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy