/tags/jsdoc_toolkit-1.3.3/test/data/augments2.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 26 lines · 12 code · 2 blank · 12 comment · 0 complexity · 505f1ec39079869ee99afbd7179a898b 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. @augments ThreeColumnPage
  17. @augments LibraryItem
  18. @inherits Junkmail.annoy
  19. @constructor
  20. */
  21. function NewsletterPage() {
  22. this.getHeadline = function() {
  23. }
  24. }