show Parameter Example

The show parameter determines the minimum visibility level of classes, methods and properties that are shown in the generated documentation. The default level to show is protected. Valid values are public, protected, package, and private.

Note that documentation files are generated for classes annotated with @treatasprivate, but are not linked to the index page.

<project>
  ...
  <reporting>
    <plugins>
      <plugin>
        <groupId>net.sf.jfxdplugin</groupId>
        <artifactId>maven-javafxdoc-plugin</artifactId>
        <version>1.0</version>
        <configuration>
          <show>public</show>
        </configuration>
      </plugin>
    </plugins>
    ...
  </reporting>
  ...
</project>