Package com.sun.javafx.binding
Class BidirectionalBinding<T>
java.lang.Object
com.sun.javafx.binding.BidirectionalBinding<T>
- All Implemented Interfaces:
ChangeListener<T>
,WeakListener
- Direct Known Subclasses:
BidirectionalBinding.StringConversionBidirectionalBinding
public abstract class BidirectionalBinding<T>
extends Object
implements ChangeListener<T>, WeakListener
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Object
bind
(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) static <T> BidirectionalBinding
boolean
protected abstract Object
protected abstract Object
int
hashCode()
static void
static <T> void
boolean
Returnstrue
if the linked listener was garbage-collected.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface javafx.beans.value.ChangeListener
changed
-
Method Details
-
bind
-
bind
public static <T> Object bind(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) -
unbind
-
unbind
-
getProperty1
-
getProperty2
-
hashCode
public int hashCode() -
wasGarbageCollected
public boolean wasGarbageCollected()Description copied from interface:WeakListener
Returnstrue
if the linked listener was garbage-collected. In this case, the listener can be removed from the observable.- Specified by:
wasGarbageCollected
in interfaceWeakListener
- Returns:
true
if the linked listener was garbage-collected.
-
equals
-