jira-importer commented on issue #511: URL: https://github.com/apache/maven-javadoc-plugin/issues/511#issuecomment-2957332499
**[Mike Perham](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mperham)** commented Fixed by MJAVADOC-27. ``` /** * Specifies the access level for classes and members to show in the Javadocs. * Possible values are: * <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#public">public</a> * (shows only public classes and members), * <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#protected">protected</a> * (shows only public and protected classes and members), * <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#package">package</a> * (shows all classes and members not marked private), and * <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#private">private</a> * (shows all classes and members). * * @parameter expression="${show}" default-value="protected" */ private String show = "protected"; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
