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]

# 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 >
