<% 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.seeComments) { %>
See: <% method.seeComments.each { param -> %>
${param.target}. <% } } %>

<% } %>
${title}