Duplicate :
|
I am unable to make javadoc 1.3 document my private inner classes properly. The inner classes show up in the documentation but do not show the private fields and methods. I am using the -private option when running javadoc. ex: public class OuterClass { private class InnerClass { /** * This method does not show up in the javadocs. * Not even without the comment, even though i run * javadoc vith the -private option. */ private void innerClassMethod() { } } }