git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112724 13f79535-47bb-0310-9956-ffa450edef68
49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<document>
|
|
|
|
<properties>
|
|
<author email="turbine-maven-user@jakarta.apache.org">Maven</author>
|
|
<title>Articles</title>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Todos">
|
|
<p>
|
|
#foreach ($class in $docInfo.classes)
|
|
#set ($todoTags = $class.getTags("@todo"))
|
|
#if ($todoTags.size() > 0 )
|
|
<subsection name="$class.name">
|
|
<table>
|
|
<th>Class Todos</th>
|
|
#foreach ($tag in $todoTags)
|
|
<tr>
|
|
<td>
|
|
$tag.value
|
|
</td>
|
|
</tr>
|
|
#end
|
|
</table>
|
|
|
|
#foreach ($m in $class.methods)
|
|
#set ($methodTodoTags = $m.getTags("@todo"))
|
|
#if ($methodTodoTags.size() > 0)
|
|
<table>
|
|
<th>Method Todos</th>
|
|
#foreach ($tag in $methodTodoTags)
|
|
<tr>
|
|
<td>
|
|
${m.name}(): $tag.value
|
|
</td>
|
|
</tr>
|
|
#end
|
|
</table>
|
|
#end
|
|
#end
|
|
</subsection>
|
|
#end
|
|
#end
|
|
</p>
|
|
</section>
|
|
</body>
|
|
</document>
|