Comments in class/method in JavaDoc

Hi everybody :-)

Is there a way to do this:

publicvoid someMethod(int var1,int var2)

{

/**

* I want this piece of comment included in JavaDoc. Here I will describethis small part of code.

*/

int var3 = var1 + var2;

}

Tnx

[535 byte] By [Stanea] at [2007-11-27 1:17:01]
# 1
Nope, not using the javadoc tool. It ignores the contents of code blocks.The comment must *precede* the declaration.-Doug
dhkramera at 2007-7-11 23:52:39 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
> Nope, not using the javadoc tool. It ignores the> contents of code blocks.> The comment must *precede* the declaration.> > -DougOK, not with JavaDoc. Is there any other tool that can extract that kind of
Stanea at 2007-7-11 23:52:39 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
Have never heard of any. It would have to have its own source parser.
dhkramera at 2007-7-11 23:52:39 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 4
OK. Tnx very much :-))
Stanea at 2007-7-11 23:52:39 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...