インタフェース Settable<T>
- 型パラメータ:
T- Type
- 既知のサブインタフェースのリスト:
BooleanProperty,BooleanSettable,CollectionProperty<E,T>,CollectionSettable<E,T>,DoubleProperty,DoubleSettable,FloatProperty,FloatSettable,IntegerProperty,IntegerSettable,ListProperty<E>,ListSettable<E>,LongProperty,LongSettable,MapProperty<K,V>,MapSettable<K,V>,NumberProperty<T>,NumberSettable<T>,ObjectProperty<T>,ObjectSettable<T>,Property<T>,SetProperty<E>,SetSettable<E>,StringProperty,StringSettable,TimeoutProperty,TimeoutSettable
public interface Settable<T>
Super Setter interface.
-
メソッドの概要
修飾子とタイプ メソッド 説明 booleanbind(Observable<? extends T> observer)Bind to observer.booleanunbind(Observable<? extends T> observer)Unbind to observer.
-
メソッドの詳細
-
bind
Bind to observer.- パラメータ:
observer- to addListener observer- 戻り値:
trueif bind success, otherwisefalse.- 関連項目:
unbind(Observable),Observable.addChangeListener(ChangeListener)
-
unbind
Unbind to observer.- パラメータ:
observer- to removeListener observer- 戻り値:
trueif unbind success, otherwisefalse.- 関連項目:
bind(Observable),Observable.removeChangeListener(ChangeListener)
-