JDK-4455507 : stddoclet?: With -private, private members of private nested classes do not show
  • Type: Bug
  • Component: tools
  • Sub-Component: javadoc(tool)
  • Affected Version: 1.3.0
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: solaris_2.6
  • CPU: sparc
  • Submitted: 2001-05-07
  • Updated: 2014-05-05
  • Resolved: 2001-05-16
Related Reports
Duplicate :  
Description
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() { 
    } 
  } 
}