Open ericf opened 12 years ago
Related to this, when A
uses B
, the stuff which A
defines new, does not show up in bold. It appears that this feature of bolding non-inherited/own-defined stuff only works with an extends
hierarchy.
A good example is TabView. It extends WidgetParent, which uses ArrayList. The methods from ArrayList show up in WidgetParent, but not in TabView.
When defining a hierarchy via
uses
, the methods, properties, etc. are not carried along; e.g., IfX
usesA
, andA
usesB
, thenB
stuff does not show up onX
.Using this code example,
Foo
will not be documented as having thegetBaz()
method which was defined onExtBase
.