- 
- All Superinterfaces:
- WritableValue<Boolean>
 - All Known Implementing Classes:
- BooleanProperty,- BooleanPropertyBase,- JavaBeanBooleanProperty,- ReadOnlyBooleanWrapper,- SimpleBooleanProperty,- SimpleStyleableBooleanProperty,- StyleableBooleanProperty
 
 public interface WritableBooleanValue extends WritableValue<Boolean> A writable boolean value.- Since:
- JavaFX 2.0
- See Also:
- WritableValue
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanget()Get the wrapped value.voidset(boolean value)Set the wrapped value.voidsetValue(Boolean value)Set the wrapped value.- 
Methods declared in interface javafx.beans.value.WritableValuegetValue
 
- 
 
- 
- 
- 
Method Detail- 
getboolean get() Get the wrapped value. UnlikeWritableValue.getValue(), this method returns primitive boolean. Needs to be identical toWritableValue.getValue().- Returns:
- The current value
 
 - 
setvoid set(boolean value) Set the wrapped value. UnlikesetValue(java.lang.Boolean), this method uses primitive boolean.- Parameters:
- value- The new value
 
 - 
setValuevoid setValue(Boolean value) Set the wrapped value.Note: this method should accept null without throwing an exception, setting "false" instead. - Specified by:
- setValuein interface- WritableValue<Boolean>
- Parameters:
- value- The new value
 
 
- 
 
-