Interface CommonSteps.DirectionStep<SELF extends CommonSteps.DirectionStep<SELF>>
- Type Parameters:
SELF
- self type
- All Superinterfaces:
Step
- All Known Subinterfaces:
CommonSteps.OneWayConfigAndFromStep<SELF>
,CommonSteps.TwoWayConfigAndFromStep<SELF>
- Enclosing class:
CommonSteps
public static interface CommonSteps.DirectionStep<SELF extends CommonSteps.DirectionStep<SELF>>
extends Step
Step for setting the direction of the binding.
- Restriction:
-
Method Summary
Modifier and TypeMethodDescriptionSets the binding to have the model-to-target direction.Sets the binding to have the target-to-model direction.
-
Method Details
-
targetToModel
SELF targetToModel()Sets the binding to have the target-to-model direction. This is the default. This method has no effect, but using it might make the calling code clearer.- Returns:
- next step
-
modelToTarget
SELF modelToTarget()Sets the binding to have the model-to-target direction.- Returns:
- next step
-