2003-01-24 03:44:26 +00:00

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>