%
int dotCount = packageName.count('.')
String pathPref = '../' * (dotCount+1)
%>
${packageName}
Class ${className}
| Method Summary | 
<% methods.each { method -> %>
| ${method.isStatic ? 'static ' : ''}${method.returnTypeDocUrl} | ${method.name}(${method.parametersDocUrl})${method.shortComment}
 | 
<% } %>
 
<% 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}.<% }%>
<%    } %>
<% } %>