/tags/jsdoc_toolkit-1.3.3/examples/data/properties3.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 58 lines · 3 code · 1 blank · 54 comment · 0 complexity · d8e80f5b683b02c90390ae0f346f6f4f MD5 · raw file

  1. /**
  2. * @constructor
  3. * @property {number} id The record set's id number.
  4. */
  5. function RecordSet(id) {
  6. this.id = id;
  7. }
  8. /*
  9. [
  10. {
  11. symbols: [
  12. {
  13. doc: { tags: [] },
  14. returns: [],
  15. type: "",
  16. properties: [
  17. {
  18. title: "property",
  19. desc: "The record set's id number.",
  20. type: "number",
  21. alias: "RecordSet.id",
  22. name: "id"
  23. }
  24. ],
  25. isa: "CONSTRUCTOR",
  26. desc: "",
  27. alias: "RecordSet",
  28. memberof: "",
  29. params: [
  30. {
  31. title: "param",
  32. desc: "",
  33. type: "",
  34. name: "id",
  35. isOptional: false
  36. }
  37. ],
  38. methods: [],
  39. name: "RecordSet"
  40. }
  41. ],
  42. overview: {
  43. doc: { tags: [] },
  44. returns: [],
  45. type: "",
  46. properties: [],
  47. isa: "FILE",
  48. desc: "No overview provided.",
  49. alias: "examples/data/properties3.js",
  50. memberof: "",
  51. params: [],
  52. methods: [],
  53. name: "examples/data/properties3.js"
  54. }
  55. }
  56. ]
  57. */