public interface IBind
| Modifier and Type | Method and Description |
|---|---|
<SOURCE_TYPE,DESTINATION_TYPE> |
bind(IObservableValue<SOURCE_TYPE> source,
IObservableValue<DESTINATION_TYPE> destination,
IBindingConverter<SOURCE_TYPE,DESTINATION_TYPE> converter)
Binds two observable values with potentially different type bidirectional using a
binding converter.
|
<VALUE_TYPE> |
bind(IObservableValue<VALUE_TYPE> source,
IObservableValue<VALUE_TYPE> destination)
Binds two observable values with same type bidirectional.
|
<VALUE_TYPE> IBinding bind(IObservableValue<VALUE_TYPE> source, IObservableValue<VALUE_TYPE> destination)
source - The source value to bind, must not be nulldestination - The destination value to bind, must not be null<SOURCE_TYPE,DESTINATION_TYPE> IBinding bind(IObservableValue<SOURCE_TYPE> source, IObservableValue<DESTINATION_TYPE> destination, IBindingConverter<SOURCE_TYPE,DESTINATION_TYPE> converter)
source - The source value to bind, must not be nulldestination - The destination value to bind, must not be nullconverter - The binding converter to use, must not be nullSiehe auch Jowidgets Nutzerhandbuch