thirdparty/jsdoctoolkit/app/test/config.js
changeset 3041 c8f47f0b6697
equal deleted inserted replaced
3040:8f9580309846 3041:c8f47f0b6697
       
     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 
       
    13 /**
       
    14  * @constructor
       
    15  * @param persons
       
    16  * @config {string} Father The paternal person.
       
    17  * @config {string} Mother The maternal person.
       
    18  * @config {string[]} Children And the rest.
       
    19  */
       
    20 function Family(/**Object*/persons) {
       
    21 
       
    22 }