PageRenderTime 15ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/jsdoc_toolkit-2.3.2/jsdoc-toolkit/app/test/config.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 22 lines | 4 code | 3 blank | 15 comment | 0 complexity | e078d7e55e32def75813e970abccf5a3 MD5 | raw file
  1. /**
  2. * @constructor
  3. * @param person The person.
  4. * @param {string} person.name The person's name.
  5. * @config {integer} age The person's age.
  6. * @config [id=1] Optional id number to use.
  7. * @param connection
  8. */
  9. function Contact(person, connection) {
  10. }
  11. /**
  12. * @constructor
  13. * @param persons
  14. * @config {string} Father The paternal person.
  15. * @config {string} Mother The maternal person.
  16. * @config {string[]} Children And the rest.
  17. */
  18. function Family(/**Object*/persons) {
  19. }