Global.Message (name, value, obj)
constructor function for Message objects

  • Parameter String:
    Name of the message
  • Parameter Obj:
    String or Array of strings passed to message-skin
  • Parameter Obj:
    Result Object (optional)
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:   }