I have two related objects StringProperty. I want it to Bindingbe weak, make it suitable for garbage collection, as soon as one of the related objects is GCed.
Check out this example:
StringProperty obj1 = new StringProperty("Object1");
StringProperty obj2 = new StringProperty("Object2");
obj2.bind(obj1);
obj2 = null;
How to create a weak link so that you can build Bindungcreated in line 3?
source
share