% def subtitle = 'Deprecated API' def title = subtitle + (props.windowTitle ? " (${props.windowTitle})" : "") // TODO enable errors(), enums() etc in SimpleGroovyPackageDoc then replace closures below def classTypes = [ "Interface" : { it.isInterface() && it.isDeprecated() }, "Class" : { it.isClass() && !it.parentClasses*.qualifiedTypeName().contains('java.lang.Throwable') && it.isDeprecated() }, "Enum" : { it.isEnum() && it.isDeprecated() }, "Exception" : { it.isClass() && it.parentClasses*.qualifiedTypeName().contains('java.lang.Exception') && it.isDeprecated() }, "Error" : { it.isClass() && it.parentClasses*.qualifiedTypeName().contains('java.lang.Error') && it.isDeprecated() }, "Annotation Type" : { it.isAnnotationType() && it.isDeprecated() } ] // TODO fields, properties, enum constants def methodTypes = [ "Method" : { it.methods().findAll{ it.isDeprecated() } }, "Constructor" : { it.constructors().findAll{ it.isDeprecated() } }, ] def pluralize = { name -> name + (name.endsWith("s") ? "es" : "s") } def dolink = { t, classDoc, boolean b -> if (!t || t instanceof String) { return classDoc.getDocUrl(t, b) } if (t instanceof org.codehaus.groovy.tools.groovydoc.SimpleGroovyClassDoc) { return "" + (b ? t.qualifiedTypeName() : t.name()) + "" } return classDoc.getDocUrl(t.qualifiedTypeName(), b) } def linkable = { t, classDoc -> dolink(t, classDoc, false) } def modifiersBrief = { t -> (t.isPrivate()?"private ":"") + (t.isProtected()?"protected ":"") + (t.isStatic()?"static ":"") } def paramsOf = { n, classDoc, boolean brief -> n.parameters().collect{ param -> (brief?'':annotations(param, ' ')) + linkable(param.isTypeAvailable()?param.type():param.typeName(), classDoc) + ' ' + param.name() + (param.defaultValue() ? " = " + param.defaultValue():"") }.join(", ") } def nameFromParams = { n -> n.name() + '(' + n.parameters().collect{ param -> param.isTypeAvailable()?param.type().qualifiedTypeName():param.typeName() }.join(', ') + ')' } %>
|
<% if (props.header) { %>${props.header}<% } %> | |||||||
PREV NEXT | FRAMES NO FRAMES |
${pluralize(k)} | |
---|---|
<%
if (classDoc.isInterface()) { %><% }
%>${classDoc.name()}<%
if (classDoc.isInterface()) { %><% }
%>
${classDoc.firstSentenceCommentText()} |
${pluralize(k)} | |
---|---|
${classDoc.name()}#${methOrConstr.name()}(${paramsOf(methOrConstr, classDoc, true)})
${methOrConstr.firstSentenceCommentText()} |
${props['footer']?:""}