
org.codehaus.groovy.tools.template.class.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
${docType.simpleClassName} ($title)
<%
int dotCount = docType.packageName.count('.')
String pathPref = '../' * (dotCount + 1)
%>
Package: ${docType.packageName}
${docType.interface ? 'Interface' : 'Class'} ${docType.simpleClassName}
-
-
Methods Summary
Methods
Return type
Name and parameters
<% docType.docMethods.eachWithIndex { docMethod, i -> %>
${docMethod.isStatic() ? 'static ' : ''}${docMethod.returnTypeDocUrl}
${docMethod.name}(${docMethod.parametersDocUrl})
${docMethod.shortComment}
<% } %>
<% docType.inheritedMethods.each { inhDocType, inhDocMethods -> %>
-
Methods inherited from ${inhDocType.interface ? 'interface' : 'class'} ${inhDocType.packageName}.${docType.linkAnchor(inhDocType)}
<%= inhDocMethods.findAll { !it.static }.collect { docMethod ->
"""${docMethod.name}
"""
}.join(", ") %>
<% } %>
-
-
Methods Detail
<% docType.docMethods.eachWithIndex { docMethod, i -> %>
-
public ${docMethod.isStatic() ? 'static ' : ''}${docMethod.returnTypeDocUrl} ${docMethod.name}(${docMethod.parametersDocUrl})
${docMethod.comment}
<% if (docMethod.parametersSignature) { %>
- Parameters:
<% docMethod.parameterComments.each { name, comment -> %>
${name}
- ${comment}
<% } %>
<%
} %>
<% if (docMethod.returnComment) { %>
- Returns:
- ${docMethod.returnComment}
<% } %>
<%if (docMethod.sinceComment) { %>
- Since:
- ${docMethod.sinceComment}
<%}%>
<% if (docMethod.seeComments) { %>
- See Also:
<% docMethod.seeComments.each { %>
- ${it}
<% }%>
<% } %>
<% } %>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy