Uses of Class
javafx.beans.property.ReadOnlyStringProperty
Package | Description |
---|---|
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.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.web |
This package provides means for loading and displaying Web content.
|
-
Uses of ReadOnlyStringProperty in javafx.beans.property
Subclasses of ReadOnlyStringProperty in javafx.beans.property Modifier and Type Class Description class
ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping aString
.class
ReadOnlyStringWrapper
This class provides a convenient class to define read-only properties.class
SimpleStringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringPropertyBase
The classStringPropertyBase
is the base class for a property wrapping aString
value.Methods in javafx.beans.property that return ReadOnlyStringProperty Modifier and Type Method Description ReadOnlyStringProperty
ReadOnlyStringWrapper. getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlyStringWrapper
. -
Uses of ReadOnlyStringProperty in javafx.beans.property.adapter
Subclasses of ReadOnlyStringProperty in javafx.beans.property.adapter Modifier and Type Class Description class
JavaBeanStringProperty
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
.class
ReadOnlyJavaBeanStringProperty
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of ReadOnlyStringProperty in javafx.concurrent
Methods in javafx.concurrent that return ReadOnlyStringProperty Modifier and Type Method Description ReadOnlyStringProperty
Service. messageProperty()
ReadOnlyStringProperty
Task. messageProperty()
ReadOnlyStringProperty
Worker. messageProperty()
Gets the ReadOnlyStringProperty representing the message.ReadOnlyStringProperty
Service. titleProperty()
ReadOnlyStringProperty
Task. titleProperty()
ReadOnlyStringProperty
Worker. titleProperty()
Gets the ReadOnlyStringProperty representing the title. -
Uses of ReadOnlyStringProperty in javafx.css
Subclasses of ReadOnlyStringProperty in javafx.css Modifier and Type Class Description class
SimpleStyleableStringProperty
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
StyleableStringProperty
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ReadOnlyStringProperty in javafx.scene.control
Methods in javafx.scene.control that return ReadOnlyStringProperty Modifier and Type Method Description ReadOnlyStringProperty
TextInputControl. selectedTextProperty()
Defines the characters in the TextInputControl which are selected -
Uses of ReadOnlyStringProperty in javafx.scene.web
Methods in javafx.scene.web that return ReadOnlyStringProperty Modifier and Type Method Description ReadOnlyStringProperty
WebEngine. locationProperty()
URL of the current Web page.ReadOnlyStringProperty
WebEngine. titleProperty()
Title of the current Web page.