HELP: Inner Class vs. Private Member
I use "javadoc -private" to create documents with inner classes. As a result, all private fields and methods, which I don't need, show up in the same document. Is there any way I can have inner classes without private members?
[234 byte] By [
aijunga] at [2007-9-27 9:33:30]

I the inner classes are not private, and you do not use the '-private' tag, then you will get what you want. inner classes are not private unless you declare them to be, and so you do not need toe '-private' option when calling javadoc.
how do you declare your inner class?
Is it (public)
public static class MyInnerClass
or (private)
private static class MyInnerClass
or (package)
static class MyInnerClass
or (protected)
protected static class MyInnerClass
Try to change the way you declare the inner class. Use protected or package or public instead.