org.codehaus.groovy.tools.template.class.html Maven / Gradle / Ivy
The newest version!
${className} (Groovy JDK)
<%
int dotCount = packageName.count('.')
String pathPref = '../' * (dotCount+1)
%>
Overview
Package
Class
Tree
Deprecated
Index
Help
${title}
${packageName}
Class ${className}
Method Summary
<% methods.each { method -> %>
${method.isStatic ? 'static ' : ''}${method.returnTypeDocUrl}
${method.name}(${method.parametersDocUrl})
${method.shortComment}
<% } %>
Method Detail
<% methods.each { method -> %>
${method.name}
public ${method.isStatic ? 'static ' : ''}${method.returnTypeDocUrl} ${method.name}(${method.parametersDocUrl})
-
- ${method.comment}
<% if (method.parametersSignature) { %>
- Parameters:
<% method.parameters.each { param -> %>
${param.name}
- ${param.comment}.
<% } %>
<%
} %>
<% if (method.returnComment) { %>
- Returns:
- ${method.returnComment}
<% } %>
<%if (method.since) { %>
- Since:
- ${method.since}
<%}%>
<% if (method.seeComments) { %>
- See:
<% method.seeComments.each { param -> %>
- ${param.target}.
<% }%>
<% } %>
<% } %>
Overview
Package
Class
Tree
Deprecated
Index
Help
${title}