Closed GoogleCodeExporter closed 8 years ago
Giving a special appearance to classes with an @abstract tag can already be
accomplished by treating
@abstract as a custom tag. See:
http://code.google.com/p/jsdoc-toolkit/wiki/FAQ#Using_custom_tags
As for inheriting documentation, this already happens via the @extends tag (or
its synonym @augments). In
the generic jsdoc template this results in links to the inherited members
appearing in the Child's
documentation. If you want it to appear as if the inherited member is actually
implemented in the Child you
can use the @borrows tag, like so
/**
* @constructor
* @extends Parent
* @borrows Parent#doSomethingSpecific
*/
Child = function() {
this.id = "child";
}
Original comment by micmath
on 21 Jun 2009 at 1:00
Original issue reported on code.google.com by
rebecca....@gmail.com
on 15 Jun 2009 at 11:02