* Extracts value serialized by Field.serializeValue and applies * it on the field. Calls Field.extractValue internally. * @param {mixed} data Serialized data * @return {Field} Fluent interface
(data)
| 380 | * @return {Field} Fluent interface |
| 381 | */ |
| 382 | extract (data) { |
| 383 | this.setValue(this.extractValue(data)) |
| 384 | return this |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Extracts a value serialized by {@link Field.serializeValue} and returns it. |
nothing calls this directly
no test coverage detected