Uses of Class
javafx.beans.property.StringProperty
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.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
javafx.print |
Provides the public classes for the JavaFX Printing API.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.chart |
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
|
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.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
javafx.scene.text |
Provides the set of classes for fonts and renderable Text Node.
|
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
-
Uses of StringProperty in javafx.beans.property
Subclasses of StringProperty in javafx.beans.property Modifier and Type Class Description 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
StringPropertyBase
The classStringPropertyBase
is the base class for a property wrapping aString
value. -
Uses of StringProperty in javafx.beans.property.adapter
Subclasses of StringProperty 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
. -
Uses of StringProperty in javafx.css
Subclasses of StringProperty 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 StringProperty in javafx.print
Methods in javafx.print that return StringProperty Modifier and Type Method Description StringProperty
JobSettings. jobNameProperty()
StringProperty
representing the name of a job. -
Uses of StringProperty in javafx.scene
Methods in javafx.scene that return StringProperty Modifier and Type Method Description StringProperty
Node. idProperty()
The id of thisNode
.StringProperty
Node. styleProperty()
A string representation of the CSS style associated with this specificNode
. -
Uses of StringProperty in javafx.scene.chart
Methods in javafx.scene.chart that return StringProperty Modifier and Type Method Description StringProperty
PieChart.Data. nameProperty()
The name of the pie sliceStringProperty
XYChart.Series. nameProperty()
The user displayable name for this seriesStringProperty
Chart. titleProperty()
The chart title -
Uses of StringProperty in javafx.scene.control
Methods in javafx.scene.control that return StringProperty Modifier and Type Method Description StringProperty
ButtonBar. buttonOrderProperty()
The order for the typical buttons in a standard button bar.StringProperty
Dialog. contentTextProperty()
A property representing the content text for the dialog pane.StringProperty
DialogPane. contentTextProperty()
A property representing the content text for the dialog pane.StringProperty
Labeled. ellipsisStringProperty()
Specifies the string to display for the ellipsis when text is truncated.StringProperty
Dialog. headerTextProperty()
A property representing the header text for the dialog pane.StringProperty
DialogPane. headerTextProperty()
A property representing the header text for the dialog pane.StringProperty
MenuItem. idProperty()
The id of this MenuItem.StringProperty
PopupControl. idProperty()
The id of thisPopupControl
.StringProperty
Tab. idProperty()
The id of this tab.StringProperty
TableColumnBase. idProperty()
The id of this TableColumnBase.StringProperty
ComboBoxBase. promptTextProperty()
TheComboBox
prompt text to display, ornull
if no prompt text is displayed.StringProperty
Spinner. promptTextProperty()
The prompt text to display in theSpinner
, ornull
if no prompt text is displayed.StringProperty
TextInputControl. promptTextProperty()
The prompt text to display in theTextInputControl
.StringProperty
MenuItem. styleProperty()
A string representation of the CSS style associated with this specific MenuItem.StringProperty
PopupControl. styleProperty()
StringProperty
Tab. styleProperty()
The CSS style string associated to this tab.StringProperty
TableColumnBase. styleProperty()
A string representation of the CSS style associated with this TableColumnBase instance.StringProperty
Labeled. textProperty()
The text to display in the label.StringProperty
MenuItem. textProperty()
The text to display in theMenuItem
.StringProperty
Tab. textProperty()
The text shown in the tab.StringProperty
TableColumnBase. textProperty()
This is the text to show in the header for this column.StringProperty
TextInputControl. textProperty()
The textual content of this TextInputControl.StringProperty
Tooltip. textProperty()
The text to display in the tooltip.StringProperty
Dialog. titleProperty()
Return the titleProperty of the dialog. -
Uses of StringProperty in javafx.scene.shape
Methods in javafx.scene.shape that return StringProperty Modifier and Type Method Description StringProperty
SVGPath. contentProperty()
Defines the SVG Path encoded string as specified at: http://www.w3.org/TR/SVG/paths.html. -
Uses of StringProperty in javafx.scene.text
Methods in javafx.scene.text that return StringProperty Modifier and Type Method Description StringProperty
Text. textProperty()
Defines text string that is to be displayed. -
Uses of StringProperty in javafx.scene.web
Methods in javafx.scene.web that return StringProperty Modifier and Type Method Description StringProperty
WebEngine. userAgentProperty()
Specifies user agent ID string.StringProperty
WebEngine. userStyleSheetLocationProperty()
Location of the user stylesheet as a string URL. -
Uses of StringProperty in javafx.stage
Methods in javafx.stage that return StringProperty Modifier and Type Method Description StringProperty
DirectoryChooser. titleProperty()
The title of the displayed dialog.StringProperty
FileChooser. titleProperty()
The title of the displayed file dialog.StringProperty
Stage. titleProperty()
Defines the title of theStage
.