I have a protected class that is extended by a public class. The protected class contains a number of public methods.
When Javadoc is generated for public visibility, the inherited methods do not appear in the documentation of the public class.
I would like for the inherited methods to appear in the method summary of the extending class when generating Javadoc for public visibility. My reasoning is that if the base class isn't being documented (due to protected), then any public class that extends it should have those methods in its method summary.
Is there some way of annotating these methods or arguments to javadoc that would accomplish this?
javadoc -protectednot work? – Loadmaster Jan 18 at 22:51