Javadoc - How to disable all comments & tags ?

Good afternoon everyone,I would like to prevent all comments & tags from being parsed by the Javadoc tools.I would like to have a Javadoc with only information exported from source code.Is it possible? Is there any option to enable?Thank
[298 byte] By [christophe.bismutha] at [2007-10-2 21:19:19]
# 1
Javadoc has no built-in option the prevent comments and tags from being parsed. It's not clear what you mean by "only information exported from source code."What information? The implementation body of the source code?-Doug
dhkramera at 2007-7-14 0:28:31 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
"What information? The implementation body of the source code?"I mean all information that is already exported in Javadoc, but the comments from tags (@author, @version, @param, and all stuff like /** blablabla */).Thanks,Christophe
christophe.bismutha at 2007-7-14 0:28:31 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
Might try getRawCommentText() http://java.sun.com/j2se/1.5.0/docs/guide/javadoc/doclet/spec/com/sun/javadoc/Doc.html#getRawCommentText()-Doug
dhkramera at 2007-7-14 0:28:31 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 4

Just run javadoc with the -nocomment option. From the command line:

javadoc -nocomment yourpackage

In Netbeans, go to Project Properties - Build- Documenting and there is a text field for adding Javadoc options.

To disable an individual tag but not the rest of the comment, use the option

-tag tagname:X for each tag you want to disable.

raineha at 2007-7-14 0:28:31 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...