* Change the value of object[property] * * @param {Object} newValue The new value of object[property]
(newValue)
| 87 | * @param {Object} newValue The new value of <code>object[property]</code> |
| 88 | */ |
| 89 | setValue(newValue) { |
| 90 | this.object[this.property] = newValue; |
| 91 | if (this.__onChange) { |
| 92 | this.__onChange.call(this, newValue); |
| 93 | } |
| 94 | |
| 95 | this.updateDisplay(); |
| 96 | return this; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Gets the value of <code>object[property]</code> |
no test coverage detected