/trunk/jsdoc-toolkit/app/test/augments2.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 26 lines · 12 code · 2 blank · 12 comment · 0 complexity · 3666f721884f9489b077efcadcd5ee37 MD5 · raw file

  1. /**
  2. @constructor
  3. */
  4. function LibraryItem() {
  5. this.reserve = function() {
  6. }
  7. }
  8. /**
  9. @constructor
  10. */
  11. function Junkmail() {
  12. this.annoy = function() {
  13. }
  14. }
  15. /**
  16. @inherits Junkmail.prototype.annoy as pester
  17. @augments ThreeColumnPage
  18. @augments LibraryItem
  19. @constructor
  20. */
  21. function NewsletterPage() {
  22. this.getHeadline = function() {
  23. }
  24. }