123456789101112131415161718 |
- var Person = makeClass(
- /** @lends Person# */
- {
- /** Construct a Person.
- @constructs Person
- */
- initialize: function(name) {
- /** The name of the person. */
- this.name = name;
- },
- /** Speak a message. */
- say: function(message) {
- return this.name + " says: " + message;
- }
- }
- );
|