Class subordinates
Is there a way to see which classes are called by a class using JavaDoc?
For example a LineChart class I created calls the classes Line, Label, ...
I would like to add this in my documentation as a list of classes that are used by the LineChart.
The workaround I use now is explicitly import all the classes I use.

