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

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 20 lines · 4 code · 3 blank · 13 comment · 0 complexity · e1ac0bb6421ef7c760804f77f3ec3b29 MD5 · raw file

  1. /**
  2. * @constructor
  3. * @param person The person.
  4. * @config {string} name The person's name.
  5. * @config {integer} age The person's age.
  6. * @param [id] Optional id number to use.
  7. */
  8. function Contact(person, id) {
  9. }
  10. /**
  11. * @constructor
  12. * @config {string} Father The paternal person.
  13. * @config {string} Mother The maternal person.
  14. * @config {string[]} Children And the rest.
  15. */
  16. function Family() {
  17. }