/tags/jsdoc_toolkit-1.4.0/examples/data/scope.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 78 lines · 12 code · 2 blank · 64 comment · 0 complexity · 2a6956c14d7b9ec514d4261a3f70ee2f MD5 · raw file

  1. framework.createClass(
  2. "FileWatcher.Widget",
  3. /** @scope FileWatcher.Widget */
  4. {
  5. /** Set up the widget. */
  6. initialize: function(container, args) {
  7. }
  8. }
  9. );
  10. var Record = new function() {
  11. return /** @scope Record */ {
  12. getRecord: function() {}
  13. };
  14. }
  15. /*
  16. [
  17. {
  18. symbols: [
  19. {
  20. doc: { tags: [] },
  21. returns: [],
  22. type: "",
  23. properties: [],
  24. isa: "FUNCTION",
  25. desc: "Set up the widget.",
  26. alias: "FileWatcher.Widget.initialize"
  27. memberof: "",
  28. params: [
  29. {
  30. title: "param",
  31. desc: "",
  32. type: "",
  33. name: "container",
  34. isOptional: false
  35. },
  36. {
  37. title: "param",
  38. desc: "",
  39. type: "",
  40. name: "args",
  41. isOptional: false
  42. }
  43. ],
  44. methods: [],
  45. name: "FileWatcher.Widget.initialize"
  46. },
  47. {
  48. doc: { tags: [] },
  49. returns: [],
  50. type: "",
  51. properties: [],
  52. isa: "FUNCTION",
  53. desc: "undocumented",
  54. alias: "Record.getRecord",
  55. memberof: "",
  56. params: [],
  57. methods: [],
  58. name: "Record.getRecord"
  59. }
  60. ],
  61. overview: {
  62. doc: { tags: [] },
  63. returns: [],
  64. type: "",
  65. properties: [],
  66. isa: "FILE",
  67. desc: "No overview provided.",
  68. alias: "examples\data\namespace.js",
  69. memberof: "",
  70. params: [],
  71. methods: [],
  72. name: "namespace.js"
  73. }
  74. }
  75. ]
  76. */