All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.groovy.tools.template.class.html Maven / Gradle / Ivy

The newest version!




${className} (Groovy JDK)

<%
int dotCount = packageName.count('.')
String pathPref = '../' * (dotCount+1)
%>










${title}

${packageName}
Class ${className}

<% methods.each { method -> %> <% } %>
Method Summary
${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}.
<% }%>
<% } %>
<% } %>
${title}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy