tags:

views:

62

answers:

2

I want to have custom attributes in javadoc like "@owner" "@since-version" which I do not want to be inlcuded in javadocs. is there a way around this?

+1  A: 

javadoc tool documentation:

"Some developers put custom tags in the source code that they don't always want to output. In these cases, it is important to list all tags that are present in the source code, enabling the ones you want to output and disabling the ones you don't want to output. The presence of X disables the tag, while its absence enables the tag. "

yawmark
A: 

To offer another solution:

If you are generating javadoc with the javadoc ant task, you can add a nested 'tag' element with an 'enable=false' attribute to make sure this tag is ignored.

VonC