What happens when I do binding for these two properties?
ObjectProperty<Object> propertyA = new SimpleObjectProperty<>();
ObjectProperty<Object> propertyB = new SimpleObjectProperty<>();
propertyA.set(new ObjectA());
propertyB.set(new ObjectB());
Bindings.bindBidirectional(propertyA, propertyB);
If both properties are supposed to hold the same object reference, then after this binding, would both properties be holding the reference of ObjectA
or ObjectB
?
When you call:
The value of
propertyA
will be set to the value ofpropertyB
.So in this case, as
propertyB
already refers toObjectB
, after the call, both properties will refer to:ObjectB
Test Code
Test Output
Binding implementation source
Note the call
property1.setValue(property2.getValue());
:Answers to additional questions
Because the javadoc is written by humans and not gods. Sometimes humans make unfathomable omissions. Perhaps gods do too :-)
I agree that it is useful info that should be in the Javadoc.
A bug report could be filed to improve the doc (http://bugreport.java.com). Or a post to the openjfx-dev developer list might get a developer with commit privileges to improve it. You could submit a patch yourself, but, for most people, unless they are already a JDK committer who has signed the OCA, it's probably not worth it.
Yeah, the source for that method has the following code: