sbin/res/jsdoc/app/test/constructs.js
author hamidouk
Mon, 23 Jan 2012 11:19:47 +0100
branchpopcorn-port
changeset 692 4eca4ee558a3
parent 520 fe008e95a716
permissions -rw-r--r--
this time got it right.

var Person = makeClass(
    /**
      @scope Person
    */
    {
        /**
        	This is just another way to define a constructor.
        	@constructs
        	@param {string} name The name of the person.
         */
        initialize: function(name) {
            this.name = name;
        },
        say: function(message) {
            return this.name + " says: " + message;
        }
    }
);