* Get the value * @this {!FieldModelByte} * @returns {!object} Result value and its size
()
| 3227 | * @returns {!object} Result value and its size |
| 3228 | */ |
| 3229 | get () { |
| 3230 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3231 | return { value: 0, size: 0 } |
| 3232 | } |
| 3233 | |
| 3234 | return { value: this.readByte(this.fbeOffset), size: this.fbeSize } |
| 3235 | } |
| 3236 | |
| 3237 | /** |
| 3238 | * Set the value |