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

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

There is a newer version: 3.0.22
Show newest version




    ${docType.simpleClassName} ($title)
    <%
    int dotCount = docType.packageName.count('.')
    String pathPref = '../' * (dotCount + 1)
    %>
    
    




    
    

    

    

    

    
Package: ${docType.packageName}

${docType.interface ? 'Interface' : 'Class'} ${docType.simpleClassName}

    • Methods Summary

      <% docType.docMethods.eachWithIndex { docMethod, i -> %> <% } %>
      Methods 
      Return type Name and parameters
      ${docMethod.isStatic() ? 'static ' : ''}${docMethod.returnTypeDocUrl} ${docMethod.name}(${docMethod.parametersDocUrl})
      ${docMethod.shortComment}
    • <% docType.inheritedMethods.each { inhDocType, inhDocMethods -> %>
      • Methods inherited from ${inhDocType.interface ? 'interface' : 'class'} ${inhDocType.packageName}.${docType.linkAnchor(inhDocType)}

        <%= inhDocMethods.findAll { !it.static }.collect { docMethod -> """${docMethod.name}""" }.join(", ") %>

      <% } %>
    • Methods Detail

      <% docType.docMethods.eachWithIndex { docMethod, i -> %>
      • public ${docMethod.isStatic() ? 'static ' : ''}${docMethod.returnTypeDocUrl} ${docMethod.name}(${docMethod.parametersDocUrl})

        ${docMethod.comment}

        <% if (docMethod.parametersSignature) { %>
        Parameters:
        <% docMethod.parameterComments.each { name, comment -> %>
        ${name} - ${comment}
        <% } %>
        <% } %> <% if (docMethod.returnComment) { %>
        Returns:
        ${docMethod.returnComment}
        <% } %> <%if (docMethod.sinceComment) { %>
        Since:
        ${docMethod.sinceComment}
        <%}%> <% if (docMethod.seeComments) { %>
        See Also:
        <% docMethod.seeComments.each { %>
        ${it}
        <% }%>
        <% } %>
      <% } %>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy