/tags/jsdoc_toolkit-2.3.2/jsdoc-toolkit/app/test/augments.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 31 lines · 15 code · 4 blank · 12 comment · 0 complexity · 3be8182345e18666fd82f770b670866e MD5 · raw file

  1. /**
  2. @constructor
  3. */
  4. function Layout(p) {
  5. this.init = function(p) {
  6. }
  7. this.getId = function() {
  8. }
  9. /** @type Page */
  10. this.orientation = "landscape";
  11. }
  12. /**
  13. @constructor
  14. @augments Layout
  15. */
  16. function Page() {
  17. this.reset = function(b) {
  18. }
  19. }
  20. /**
  21. @extends Page
  22. @constructor
  23. */
  24. function ThreeColumnPage() {
  25. this.init = function(resetCode) {
  26. }
  27. }