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

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

http://jsdoc-toolkit.googlecode.com/
JavaScript | 32 lines | 15 code | 4 blank | 13 comment | 0 complexity | 77dabbdf743cd011c0eeb16e9fc3de2b 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. }