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

org.codehaus.groovy.tools.groovydoc.gstringTemplates.packageLevel.package-summary.html Maven / Gradle / Ivy

There is a newer version: 3.0.21
Show newest version



<%
def isVisible = { it.isPublic() || (it.isProtected() && props.protectedScope == 'true') || (!it.isProtected() && !it.isPrivate() && props.packageScope == 'true') || props.privateScope == 'true' }
def title = packageDoc.nameWithDots() + (props.windowTitle ? " ($props.windowTitle)" : "")
// TODO enable errors(), enums() etc in SimpleGroovyPackageDoc then replace closures below
def classTypes = [
    "Interface" : { it.isInterface() },
    "Class" : { it.isClass() && !it.parentClasses*.qualifiedTypeName().contains('java.lang.Throwable') },
    "Enum" : { it.isEnum() },
    "Exception" : { it.isClass() && it.parentClasses*.qualifiedTypeName().contains('java.lang.Exception') },
    "Error" : { it.isClass() && it.parentClasses*.qualifiedTypeName().contains('java.lang.Error') },
    "Annotation Type" : { it.isAnnotationType() },
    "Script" : { it.isScript() }
]
%>
${title}











<% if (props.header) { %>${props.header}<% } %>

Package ${packageDoc.nameWithDots()}

${packageDoc.description()}

 

<% classTypes.each{ k, v -> if (packageDoc.allClasses().any{ isVisible(it) && v(it) }) { %> <% for (classDoc in packageDoc.allClasses().findAll{ isVisible(it) && v(it) }) { %> <% } %>
${k} Summary
${classDoc.name()} ${classDoc.firstSentenceCommentText()}
 


<% } %> <% } %>

${props['footer']?:""}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy