Interface CommonSteps.WriteConfigStep<F,T,THIS extends CommonSteps.WriteConfigStep<F,T,THIS>>
- Type Parameters:
F
- type of the from-end observableT
- type of the to-end observableTHIS
- self type for this step
- All Superinterfaces:
Step
- All Known Subinterfaces:
CommonSteps.BindConfigStep<F,
,T, THIS> ListCommonSteps.ListWriteConfigStep<F,
,T, THIS> ListOneWaySteps.ListOneWayBindWriteConfigStep<F,
,T, THIS> ListTwoWaySteps.ListTwoWayBindConfigStep<F,
,T, THIS> ListTwoWaySteps.ListTwoWayConfigStep<F,
,T, THIS> ListTwoWaySteps.ListTwoWayConvertToStep<F,
,THIS> SetCommonSteps.SetWriteConfigStep<F,
,T, THIS> SetOneWaySteps.SetOneWayBindWriteConfigStep<F,
,T, THIS> SetTwoWaySteps.SetTwoWayBindConfigStep<F,
,T, THIS> SetTwoWaySteps.SetTwoWayConfigStep<F,
,T, THIS> SetTwoWaySteps.SetTwoWayConvertToStep<F,
,THIS> ValueCommonSteps.ValueWriteConfigStep<F,
,T, THIS> ValueOneWaySteps.ValueOneWayBindWriteConfigStep<F,
,T, THIS> ValueTwoWaySteps.ValueTwoWayBindConfigStep<F,
,T, THIS> ValueTwoWaySteps.ValueTwoWayConfigStep<F,
,T, THIS> ValueTwoWaySteps.ValueTwoWayConvertToStep<F,
THIS>
- Enclosing class:
- CommonSteps
public static interface CommonSteps.WriteConfigStep<F,T,THIS extends CommonSteps.WriteConfigStep<F,T,THIS>>
extends Step
Step for updating the configuration for an observable that is being written
to. This is the to-end observable for a one-way binding and both observables
for a two-way binding.
- Restriction:
-
Method Summary
Modifier and TypeMethodDescriptionConfigures the resulting binding to update the written observable only whenDataBindingContext.updateTargets()
orDataBindingContext.updateModels()
is called manually.
-
Method Details
-
updateOnlyOnRequest
THIS updateOnlyOnRequest()Configures the resulting binding to update the written observable only whenDataBindingContext.updateTargets()
orDataBindingContext.updateModels()
is called manually.- Returns:
- next step
- See Also:
- Implementation Note:
- Here methods can be added that applies to the end of the binding that is being written to.
-