% int dotCount = docType.packageName.count('.') String pathPref = '../' * (dotCount + 1) %>
Return type | Name and parameters |
---|---|
${docMethod.isStatic() ? 'static ' : ''}${docMethod.returnTypeDocUrl}
|
${docMethod.name}(${docMethod.parametersDocUrl})
${docMethod.shortComment} |
<%= inhDocMethods.findAll { !it.static }.collect { docMethod -> [docMethod.name + "(" + docMethod.parametersSignature + ")", docMethod.name] }.sort{ it[0] }.collect { sig, name ->
"""$name
"""
}.join(", ") %>
${docMethod.comment}
<% if (docMethod.parametersSignature) { %>${name}
- ${comment}