DocumentJS.tags.constructor  class     

Documents a constructor function and its parameters.

Example:

/*
 * @class Customer 
 * @constructor
 * Creates a new customer.
 * @param {String} name
 */
 var Customer = function(name) {
    this.name = name;
 }
© Jupiter IT - JavaScriptMVC Training and Support