How to create Method Detail in javadoc

I am using NetBeans 5.0. I have generated javadoc giving explanation to my classes. But I don't know how to create Method Detail in javadoc to give explanations to my methods.Could anyone please help me with this.
[256 byte] By [Simmya] at [2007-11-26 16:03:24]
# 1
http://java.sun.com/j2se/javadoc/writingdoccomments/
CeciNEstPasUnProgrammeura at 2007-7-8 22:25:15 > top of Java-index,Java Essentials,New To Java...
# 2

For a class, I am creating comments as shown below in my source code and it's displaying fine in the javadoc

/**

* <pre>

* This is className

* </pre>

*/

public class className

{

...

}

In the same way, I am giving comments to my method, but it's not getting displayed in the Method Detail section of the javadoc.

/**

* This is methodName

*/

private static String methodName(String line)

{

...

}

Could you please help me with this.

Simmya at 2007-7-8 22:25:15 > top of Java-index,Java Essentials,New To Java...
# 3
I am able to create javadoc for methods that are declared as public. Likewise, could you please tell me how can I create javadoc for methods that are declared as private.
Simmya at 2007-7-8 22:25:15 > top of Java-index,Java Essentials,New To Java...
# 4
[url= http://java.sun.com/j2se/javadoc/writingdoccomments/]You really would benifit from actually reading this instead of wasting time posting.[/url]
corlettka at 2007-7-8 22:25:15 > top of Java-index,Java Essentials,New To Java...
# 5

Why aren't private methods being shown in the resulting HTML file?

By default, the javadoc tool does not include private methods. To include them, run javadoc with the "-private" option.

I did as per given, but still the resulting HTML file does not contain private methods. Could anyone please help me with this.

Simmya at 2007-7-8 22:25:15 > top of Java-index,Java Essentials,New To Java...