/tags/jsdoc_toolkit-2.4.0/jsdoc-toolkit/app/test/param_inline.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 37 lines · 17 code · 3 blank · 17 comment · 0 complexity · 2da320f732e9be483ba3664fec9f34a4 MD5 · raw file

  1. /**
  2. @constructor
  3. @param columns The number of columns.
  4. */
  5. function Layout(/**int*/columns){
  6. /**
  7. @param [id] The id of the element.
  8. @param elName The name of the element.
  9. */
  10. this.getElement = function(
  11. /** string */ elName,
  12. /** number|string */ id
  13. ) {
  14. };
  15. /**
  16. @constructor
  17. */
  18. this.Canvas = function(top, left, /**int*/width, height) {
  19. /** Is it initiated yet? */
  20. this.initiated = true;
  21. }
  22. this.rotate = function(/**nothing*/) {
  23. }
  24. /**
  25. @param x
  26. @param y
  27. @param {zoppler} z*/
  28. this.init = function(x, y, /**abbler*/z) {
  29. /** The xyz. */
  30. this.xyz = x+y+z;
  31. this.getXyz = function() {
  32. }
  33. }
  34. }