Module javafx.base

Class SetProperty<E>

    • Constructor Detail

      • SetProperty

        public SetProperty()
    • Method Detail

      • bindBidirectional

        public void bindBidirectional​(Property<ObservableSet<E>> other)
        Create a bidirectional binding between this Property and another one. Bidirectional bindings exists independently of unidirectional bindings. So it is possible to add unidirectional binding to a property with bidirectional binding and vice-versa. However, this practice is discouraged.

        It is possible to have multiple bidirectional bindings of one Property.

        JavaFX bidirectional binding implementation use weak listeners. This means bidirectional binding does not prevent properties from being garbage collected.

        Specified by:
        bindBidirectional in interface Property<E>
        Parameters:
        other - the other Property
      • unbindBidirectional

        public void unbindBidirectional​(Property<ObservableSet<E>> 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);
         
        Specified by:
        unbindBidirectional in interface Property<E>
        Parameters:
        other - the other Property
      • toString

        public String toString()
        Returns a string representation of this SetProperty object.
        Overrides:
        toString in class ReadOnlySetProperty<E>
        Returns:
        a string representation of this SetProperty object.