Package org.teamapps.databinding
Class TwoWayBindableValueImpl<T>
- java.lang.Object
-
- org.teamapps.databinding.TwoWayBindableValueImpl<T>
-
- All Implemented Interfaces:
MutableValue<T>,ObservableValue<T>,TwoWayBindableValue<T>
public class TwoWayBindableValueImpl<T> extends java.lang.Object implements TwoWayBindableValue<T>
-
-
Constructor Summary
Constructors Constructor Description TwoWayBindableValueImpl()TwoWayBindableValueImpl(T initialValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tget()Event<T>onChanged()voidset(T value)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.teamapps.databinding.MutableValue
bindReadingFrom
-
Methods inherited from interface org.teamapps.databinding.ObservableValue
bindWritingTo, valueEquals
-
Methods inherited from interface org.teamapps.databinding.TwoWayBindableValue
bindTwoWays
-
-
-
-
Constructor Detail
-
TwoWayBindableValueImpl
public TwoWayBindableValueImpl()
-
TwoWayBindableValueImpl
public TwoWayBindableValueImpl(T initialValue)
-
-
Method Detail
-
onChanged
public Event<T> onChanged()
- Specified by:
onChangedin interfaceObservableValue<T>
-
get
public T get()
- Specified by:
getin interfaceObservableValue<T>
-
set
public void set(T value)
- Specified by:
setin interfaceMutableValue<T>
-
-