Module io.github.mmm.ui.api.binding
Interface UiBindingReceiver
-
- All Known Implementing Classes:
UiBindingReceiverImpl
public interface UiBindingReceiver
Call-back interface receivinginput widgets
forproperties
.- Since:
- 1.0.0
- See Also:
UiDataBinding.bindBean(io.github.mmm.bean.ReadableBean, UiBindingReceiver, boolean)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> void
add(io.github.mmm.property.ReadableProperty<V> property, io.github.mmm.ui.api.widget.input.UiAbstractInput<V> input)
-
-
-
Method Detail
-
add
<V> void add(io.github.mmm.property.ReadableProperty<V> property, io.github.mmm.ui.api.widget.input.UiAbstractInput<V> input)
- Type Parameters:
V
- type of theproperty value
.- Parameters:
property
- theReadableProperty
that is bound.input
- theUiAbstractInput
bound to theproperty
.
-
-