Global.Message (name, value, obj) |
constructor function for Message objects
|
Sourcecode in Global/objectFunctions.js:
1: function Message(name, value, obj) { 2: this.name = name; 3: this.value = value; 4: this.obj = obj; 5: this.toString = function() { 6: return getMessage("confirm." + this.name, this.value); 7: } 8: return this; 9: } |