Module javafx.base

Class SimpleBooleanProperty

All Implemented Interfaces:
Observable, Property<Boolean>, ReadOnlyProperty<Boolean>, ObservableBooleanValue, ObservableValue<Boolean>, WritableBooleanValue, WritableValue<Boolean>
Direct Known Subclasses:
ReadOnlyBooleanWrapper

public class SimpleBooleanProperty
extends BooleanPropertyBase
This class provides a full implementation of a Property wrapping a boolean value.
Since:
JavaFX 2.0
See Also:
BooleanPropertyBase
  • Constructor Details

    • SimpleBooleanProperty

      public SimpleBooleanProperty()
      The constructor of BooleanProperty
    • SimpleBooleanProperty

      public SimpleBooleanProperty​(boolean initialValue)
      The constructor of BooleanProperty
      Parameters:
      initialValue - the initial value of the wrapped value
    • SimpleBooleanProperty

      public SimpleBooleanProperty​(Object bean, String name)
      The constructor of BooleanProperty
      Parameters:
      bean - the bean of this BooleanProperty
      name - the name of this BooleanProperty
    • SimpleBooleanProperty

      public SimpleBooleanProperty​(Object bean, String name, boolean initialValue)
      The constructor of BooleanProperty
      Parameters:
      bean - the bean of this BooleanProperty
      name - the name of this BooleanProperty
      initialValue - the initial value of the wrapped value