Context: NetBeans 8.0.2, Java 8.0.0
I wrote several classes for encapsulating dialogs to help my students write simple visual applications without complicated GUI programming knowledge, such as Tic-Tac-Toe. Unfortunately, I made some of the classes extending the JFrame and now my javadoc is littered with long lists of functions inherited from the class hierarchy, which makes it look like bullying.
I know that I can reformulate my implementation strategy to “use” a JFrame rather than a “be” JFrame, but is there an easier way to tell javadoc to simply not generate documentation based on the class hierarchy?
Thank.
Edit:
I use the NetBeans generator out of the box, with these additional parameters:
-stylesheetfile C:\Users\jack\Documents\NetBeansProjects\CartesianPlane/src/customStylesheet.css -overview "C:\Users\jack\Documents\NetBeansProjects\CartesianPlane/src/Overview.html" -subpackages edu.pcwe.uw.javaintro.cartesian_plane -exclude edu.pcwe.uw.javaintro.cartesian_plane.test
source
share