Uses of Class
javafx.beans.property.ReadOnlyBooleanProperty
Package | Description |
---|---|
javafx.application |
Provides the application life-cycle classes.
|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter |
Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property . |
javafx.concurrent |
Provides the set of classes for javafx.task.
|
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
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.
|
javafx.scene.image |
Provides the set of classes for loading and displaying images.
|
javafx.scene.transform |
Provides the set of convenient classes to perform rotating, scaling,
shearing, and translation transformations for
Affine objects. |
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
-
Uses of ReadOnlyBooleanProperty in javafx.application
Methods in javafx.application that return ReadOnlyBooleanProperty Modifier and Type Method Description static ReadOnlyBooleanProperty
Platform. accessibilityActiveProperty()
Indicates whether or not accessibility is active. -
Uses of ReadOnlyBooleanProperty in javafx.beans.binding
Methods in javafx.beans.binding that return ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
ListBinding. emptyProperty()
abstract ReadOnlyBooleanProperty
ListExpression. emptyProperty()
A boolean property that istrue
, if the list is empty.ReadOnlyBooleanProperty
MapBinding. emptyProperty()
abstract ReadOnlyBooleanProperty
MapExpression. emptyProperty()
A boolean property that istrue
, if the map is empty.ReadOnlyBooleanProperty
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.property Modifier and Type Class Description class
BooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.class
BooleanPropertyBase
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.class
SimpleBooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.Methods in javafx.beans.property that return ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
ListPropertyBase. emptyProperty()
ReadOnlyBooleanProperty
MapPropertyBase. emptyProperty()
ReadOnlyBooleanProperty
SetPropertyBase. emptyProperty()
ReadOnlyBooleanProperty
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.adapter Modifier and Type Class Description class
JavaBeanBooleanProperty
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.class
ReadOnlyJavaBeanBooleanProperty
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 ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Service. runningProperty()
ReadOnlyBooleanProperty
Task. runningProperty()
ReadOnlyBooleanProperty
Worker. runningProperty()
Gets the ReadOnlyBooleanProperty representing whether the Worker is running. -
Uses of ReadOnlyBooleanProperty in javafx.css
Subclasses of ReadOnlyBooleanProperty in javafx.css Modifier and Type Class Description class
SimpleStyleableBooleanProperty
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
StyleableBooleanProperty
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ReadOnlyBooleanProperty in javafx.scene
Methods in javafx.scene that return ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Node. disabledProperty()
Indicates whether or not thisNode
is disabled.ReadOnlyBooleanProperty
Node. focusedProperty()
Indicates whether thisNode
currently has the input focus.ReadOnlyBooleanProperty
Node. hoverProperty()
Whether or not thisNode
is being hovered over.ReadOnlyBooleanProperty
Parent. needsLayoutProperty()
Indicates that this Node and its subnodes requires a layout pass on the next pulse.ReadOnlyBooleanProperty
Node. pressedProperty()
Whether or not theNode
is pressed. -
Uses of ReadOnlyBooleanProperty in javafx.scene.control
Methods in javafx.scene.control that return ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Tooltip. activatedProperty()
Typically, the tooltip is "activated" when the mouse moves over a Control.ReadOnlyBooleanProperty
ButtonBase. armedProperty()
Indicates that the button has been "armed" such that a mouse release will cause the button's action to be invoked.ReadOnlyBooleanProperty
Tab. disabledProperty()
Indicates whether or not thisTab
is disabled.ReadOnlyBooleanProperty
Cell. editingProperty()
Property representing whether this cell is currently in its editing state.ReadOnlyBooleanProperty
Cell. emptyProperty()
A property used to represent whether the cell has any contents.ReadOnlyBooleanProperty
ProgressIndicator. indeterminateProperty()
A flag indicating whether it is possible to determine the progress of the ProgressIndicator.ReadOnlyBooleanProperty
TreeItem. leafProperty()
Represents the TreeItem leaf property, which is true if the TreeItem has no children.ReadOnlyBooleanProperty
TextInputControl. redoableProperty()
The property describes if it's currently possible to redo the latest change of the content that was undone.ReadOnlyBooleanProperty
Cell. selectedProperty()
Indicates whether or not this cell has been selected.ReadOnlyBooleanProperty
Tab. selectedProperty()
The currently selected tab.ReadOnlyBooleanProperty
ChoiceBox. showingProperty()
Indicates whether the drop down is displaying the list of choices to the user.ReadOnlyBooleanProperty
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).ReadOnlyBooleanProperty
Dialog. showingProperty()
Represents whether the dialog is currently showing.ReadOnlyBooleanProperty
Menu. showingProperty()
Indicates whether theContextMenu
is currently visible.ReadOnlyBooleanProperty
MenuButton. showingProperty()
Indicates whether theContextMenu
is currently visible.ReadOnlyBooleanProperty
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 ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Image. 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 ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Transform. identityProperty()
Determines if this is currently an identity transform.ReadOnlyBooleanProperty
Transform. type2DProperty()
Determines if this is currently a 2D transform. -
Uses of ReadOnlyBooleanProperty in javafx.stage
Methods in javafx.stage that return ReadOnlyBooleanProperty Modifier and Type Method Description ReadOnlyBooleanProperty
Stage. alwaysOnTopProperty()
Defines whether thisStage
is kept on top of other windows.ReadOnlyBooleanProperty
Window. focusedProperty()
Whether or not thisWindow
has the keyboard or input focus.ReadOnlyBooleanProperty
Stage. fullScreenProperty()
Specifies whether thisStage
should be a full-screen, undecorated window.ReadOnlyBooleanProperty
Stage. iconifiedProperty()
Defines whether theStage
is iconified or not.ReadOnlyBooleanProperty
Stage. maximizedProperty()
Defines whether theStage
is maximized or not.ReadOnlyBooleanProperty
Window. showingProperty()
Whether or not thisWindow
is showing (that is, open on the user's system).