public abstract void unbindBidirectional (Property<T> other)

Remove a bidirectional binding between this Property and another one. If no bidirectional binding between the properties exists, calling this method has no effect. It is possible to unbind by a call on the second property. This code will work:

     property1.bindBirectional(property2);
     property2.unbindBidirectional(property1);
 

Parameters:
other     the other Property

Exceptions:
NullPointerException     if other is null
IllegalArgumentException     if other is this