augments.js 352 B

12345678910111213141516171819202122232425262728293031
  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. }