Uses of Class
javafx.beans.property.ReadOnlyBooleanProperty
Packages that use ReadOnlyBooleanProperty
Package
Description
Provides the application life-cycle classes.
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.Provides the set of classes for javafx.task.
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
Provides the core set of base
classes for the JavaFX Scene Graph API.
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
Provides the set of classes for loading and displaying images.
Provides the set of convenient classes to perform rotating, scaling,
shearing, and translation transformations for
Affine
objects.Provides the top-level container classes for JavaFX content.
-
Uses of ReadOnlyBooleanProperty in javafx.application
Methods in javafx.application that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionstatic ReadOnlyBooleanProperty
Platform.accessibilityActiveProperty()
Indicates whether or not accessibility is active. -
Uses of ReadOnlyBooleanProperty in javafx.beans.binding
Methods in javafx.beans.binding that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionListBinding.emptyProperty()
abstract ReadOnlyBooleanProperty
ListExpression.emptyProperty()
A boolean property that istrue
, if the list is empty.MapBinding.emptyProperty()
abstract ReadOnlyBooleanProperty
MapExpression.emptyProperty()
A boolean property that istrue
, if the map is empty.SetBinding.emptyProperty()
abstract ReadOnlyBooleanProperty
SetExpression.emptyProperty()
A boolean property that istrue
, if the set is empty. -
Uses of ReadOnlyBooleanProperty in javafx.beans.property
Subclasses of ReadOnlyBooleanProperty in javafx.beans.propertyModifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping aboolean
value.Methods in javafx.beans.property that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionListPropertyBase.emptyProperty()
MapPropertyBase.emptyProperty()
SetPropertyBase.emptyProperty()
ReadOnlyBooleanWrapper.getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlyBooleanWrapper
.static ReadOnlyBooleanProperty
ReadOnlyBooleanProperty.readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)
Returns aReadOnlyBooleanProperty
that wraps aReadOnlyProperty
. -
Uses of ReadOnlyBooleanProperty in javafx.beans.property.adapter
Subclasses of ReadOnlyBooleanProperty in javafx.beans.property.adapterModifier and TypeClassDescriptionclass
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.class
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
. -
Uses of ReadOnlyBooleanProperty in javafx.concurrent
Methods in javafx.concurrent that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionService.runningProperty()
Task.runningProperty()
Worker.runningProperty()
Gets the ReadOnlyBooleanProperty representing whether the Worker is running. -
Uses of ReadOnlyBooleanProperty in javafx.css
Subclasses of ReadOnlyBooleanProperty in javafx.cssModifier and TypeClassDescriptionclass
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ReadOnlyBooleanProperty in javafx.scene
Methods in javafx.scene that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionNode.disabledProperty()
Indicates whether or not thisNode
is disabled.Node.focusedProperty()
Indicates whether thisNode
currently has the input focus.Node.hoverProperty()
Whether or not thisNode
is being hovered over.Parent.needsLayoutProperty()
Indicates that this Node and its subnodes requires a layout pass on the next pulse.Node.pressedProperty()
Whether or not theNode
is pressed. -
Uses of ReadOnlyBooleanProperty in javafx.scene.control
Methods in javafx.scene.control that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionTooltip.activatedProperty()
Typically, the tooltip is "activated" when the mouse moves over a Control.ButtonBase.armedProperty()
Indicates that the button has been "armed" such that a mouse release will cause the button's action to be invoked.Tab.disabledProperty()
Indicates whether or not thisTab
is disabled.Cell.editingProperty()
Property representing whether this cell is currently in its editing state.Cell.emptyProperty()
A property used to represent whether the cell has any contents.ProgressIndicator.indeterminateProperty()
A flag indicating whether it is possible to determine the progress of the ProgressIndicator.TreeItem.leafProperty()
Represents the TreeItem leaf property, which is true if the TreeItem has no children.TextInputControl.redoableProperty()
The property describes if it's currently possible to redo the latest change of the content that was undone.Cell.selectedProperty()
Indicates whether or not this cell has been selected.Tab.selectedProperty()
The currently selected tab.ChoiceBox.showingProperty()
Indicates whether the drop down is displaying the list of choices to the user.ComboBoxBase.showingProperty()
Represents the current state of the ComboBox popup, and whether it is currently visible on screen (although it may be hidden behind other windows).Dialog.showingProperty()
Represents whether the dialog is currently showing.Menu.showingProperty()
Indicates whether theContextMenu
is currently visible.MenuButton.showingProperty()
Indicates whether theContextMenu
is currently visible.TextInputControl.undoableProperty()
The property describes if it's currently possible to undo the latest change of the content that was done. -
Uses of ReadOnlyBooleanProperty in javafx.scene.image
Methods in javafx.scene.image that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionImage.errorProperty()
Indicates whether an error was detected while loading an image. -
Uses of ReadOnlyBooleanProperty in javafx.scene.transform
Methods in javafx.scene.transform that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionTransform.identityProperty()
Determines if this is currently an identity transform.Transform.type2DProperty()
Determines if this is currently a 2D transform. -
Uses of ReadOnlyBooleanProperty in javafx.stage
Methods in javafx.stage that return ReadOnlyBooleanPropertyModifier and TypeMethodDescriptionStage.alwaysOnTopProperty()
Defines whether thisStage
is kept on top of other windows.Window.focusedProperty()
Whether or not thisWindow
has the keyboard or input focus.Stage.fullScreenProperty()
Specifies whether thisStage
should be a full-screen, undecorated window.Stage.iconifiedProperty()
Defines whether theStage
is iconified or not.Stage.maximizedProperty()
Defines whether theStage
is maximized or not.Window.showingProperty()
Whether or not thisWindow
is showing (that is, open on the user's system).