-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
sparc
-
solaris_2.6
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() {
}
}
}
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() {
}
}
}
- duplicates
-
JDK-4456112 stddoclet: javadoc does not document fields/methods for private inner classes
-
- Closed
-