ListPropertyBase::bind, SetPropertyBase::bind, MapPropertyBase::bind have a check on whether a different instance of the observable is the same, but it should check againts identity.
The attached test shows how these three properties fail when binding is called twice without unbinding first:
This fails to produce the expected result:
c.bind(a);
c.bind(b);
while this is the required workaround to make it work:
c.bind(a);
c.unbind(); // need to explicitly unbind
c.bind(b);
According to https://bugs.openjdk.java.net/browse/JDK-8094799, the ListExpressionHelper::fireValueChangedEvent was modified precisely to test against identity.
If such change is done in bind() for these three methods, the workaround (unbinding) wouldn't be necessary.
The attached test shows how these three properties fail when binding is called twice without unbinding first:
This fails to produce the expected result:
c.bind(a);
c.bind(b);
while this is the required workaround to make it work:
c.bind(a);
c.unbind(); // need to explicitly unbind
c.bind(b);
According to https://bugs.openjdk.java.net/browse/JDK-8094799, the ListExpressionHelper::fireValueChangedEvent was modified precisely to test against identity.
If such change is done in bind() for these three methods, the workaround (unbinding) wouldn't be necessary.