java.lang.Object
org.cantaloop.tools.doclet.AbstractExtensionTag
org.cantaloop.tools.doclet.TodoTag
- All Implemented Interfaces:
- ExtensionTag
- public class TodoTag
- extends AbstractExtensionTag
A todo-tag describes some work that still needs to
be accomplished. Typical examples include optimizing algorithms,
proving correctness of new code, renaming fields or methods
to conform to standards, cleaning up code, etc.
(Taken from http://www.infospheres.caltech.edu/resources/code_standards/java_standard.html)
Example:
\@todo <written-by value="stefan"/><priority value="mid"/>
<assign-to value="david"/><text>There's still a lot to do.</text>
|
Method Summary |
protected void |
doInnerProcessing()
Inserts a text node with the tag text as content as child node of the m_output
element. |
| Methods inherited from class org.cantaloop.tools.doclet.AbstractExtensionTag |
addAll, getClassLink, getClassName, getCVSClassLink, getLink, getMethodName, getOutput, getPackageName, getSourceClassLink, getTagName, isClass, isField, isMethod, process, setDoc, setTag, stringToElement, stringToElementList, toString |
TodoTag
public TodoTag()
doInnerProcessing
protected void doInnerProcessing()
throws TagException
- Description copied from class:
AbstractExtensionTag
- Inserts a text node with the tag text as content as child node of the
m_output
element. This method may be overwritten by subclasses to provide a more
intelligent handling of tag content.
- Overrides:
doInnerProcessing in class AbstractExtensionTag