1234567891011121314151617181920212223242526272829303132333435363738 |
- /** @class */
- var Person = makeClass(
- /** @lends Person# */
- {
- /** Set up initial values. */
- initialize: function(name) {
- },
- /** Speak a message. */
- say: function(message) {
- return this.name + " says: " + message;
- },
- /**
- * The name of the person.
- * @type {string}
- */
- get name() {
- return this._name;
- },
- /**
- * @type {string}
- * @param val
- */
- set name(val) {
- this._name = name;
- },
- /**
- * @type {number}
- */
- get age() {
- return 25;
- }
- }
- );
|