* Get the value * @this {!FieldModelUInt16} * @returns {!object} Result value and its size
()
| 3635 | * @returns {!object} Result value and its size |
| 3636 | */ |
| 3637 | get () { |
| 3638 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3639 | return { value: 0, size: 0 } |
| 3640 | } |
| 3641 | |
| 3642 | return { value: this.readUInt16(this.fbeOffset), size: this.fbeSize } |
| 3643 | } |
| 3644 | |
| 3645 | /** |
| 3646 | * Set the value |
nothing calls this directly
no test coverage detected