Warning on missing custom javadoc tags

Posted by flumins on Stack Overflow See other posts from Stack Overflow or by flumins
Published on 2010-05-10T15:33:50Z Indexed on 2010/05/11 0:14 UTC
Read the original article Hit count: 489

Filed under:
|
|

We create a custom Doclet for our projet to generate a specific documentation for our client.

We define some specific tags that are parsed by the doclet when we generate the documentation.

Do you know how to ask eclipse to add warning when those special tags are missing in our javadoc comments ?

Example of well formed javadoc:

/**
 * @dialogName TECK-01-E-608
 * @useVO ServiceVO
 * @useVO AgentVO
 */
public class MyDialog extends BaseDialogImpl {
...

If @dialogName is missing, the developper should have a warning in eclipse...

I look checkstyle a little bit, but I don't understand how to configure it to do such a thing.

Thanks in advance for your help.

© Stack Overflow or respective owner

Related posts about java

Related posts about javadoc