PageRenderTime 17ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/branches/jsdoc_tk_gui/setup/test/data/augments.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 32 lines | 15 code | 4 blank | 13 comment | 0 complexity | 0d1677fe6b718acf80bebd57b506dbcd MD5 | raw file
  1. /**
  2. @ class
  3. @constructor
  4. */
  5. function Layout(p) {
  6. this.init = function(p) {
  7. }
  8. this.getId = function() {
  9. }
  10. /** @type string */
  11. this.orientation = "landscape";
  12. }
  13. /**
  14. @constructor
  15. @augments Layout
  16. */
  17. function Page() {
  18. this.reset = function(b) {
  19. }
  20. }
  21. /**
  22. @extends Page
  23. @constructor
  24. */
  25. function ThreeColumnPage() {
  26. this.init = function(p) {
  27. }
  28. }