Package | Description |
---|---|
com.sun.javafx.property | |
com.sun.javafx.scene | |
com.sun.javafx.scene.control | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.stage | |
com.sun.javafx.tk | |
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter | |
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.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.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
javafx.scene.image |
Provides the set of classes for loading and displaying images.
|
javafx.scene.layout |
Provides classes to support user interface layout.
|
javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static <T> ReadOnlyObjectProperty<T> |
JavaBeanAccessHelper.createReadOnlyJavaBeanProperty(java.lang.Object bean,
java.lang.String propertyName) |
Modifier and Type | Class and Description |
---|---|
private class |
EventHandlerProperties.EventHandlerProperty<T extends Event> |
Modifier and Type | Method and Description |
---|---|
private static ReadOnlyObjectProperty<? extends Control> |
ControlAcceleratorSupport.getControlProperty(java.lang.Object obj) |
Modifier and Type | Class and Description |
---|---|
private class |
LabeledText.StyleablePropertyMirror<T> |
Modifier and Type | Field and Description |
---|---|
private ReadOnlyObjectProperty<Window> |
ProgressIndicatorSkin.windowProperty |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Screen> |
WindowHelper.WindowAccessor.screenProperty(Window window) |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<PlatformImage> |
Toolkit.ImageAccessor.getImageProperty(Image image) |
Modifier and Type | Class and Description |
---|---|
private class |
Animation.AnimationReadOnlyProperty<T> |
private class |
Animation.CurrentTimeProperty |
Modifier and Type | Field and Description |
---|---|
private ReadOnlyObjectProperty<Duration> |
Animation.cycleDuration
Read-only variable to indicate the duration of one cycle of this
Animation : the time it takes to play from time 0 to the
end of the Animation (at the default rate of
1.0). |
private ReadOnlyObjectProperty<Animation.Status> |
Animation.status
The status of the
Animation . |
private ReadOnlyObjectProperty<Duration> |
Animation.totalDuration
Read-only variable to indicate the total duration of this
Animation , including repeats. |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Duration> |
Animation.currentTimeProperty() |
ReadOnlyObjectProperty<Duration> |
Animation.cycleDurationProperty() |
ReadOnlyObjectProperty<Animation.Status> |
Animation.statusProperty() |
ReadOnlyObjectProperty<Duration> |
Animation.totalDurationProperty() |
Modifier and Type | Class and Description |
---|---|
class |
ObjectProperty<T>
This class provides a full implementation of a
Property wrapping an
arbitrary Object . |
class |
ObjectPropertyBase<T>
The class
ObjectPropertyBase is the base class for a property
wrapping an arbitrary Object . |
class |
ReadOnlyObjectPropertyBase<T>
Base class for all readonly properties wrapping an arbitrary
Object . |
class |
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.
|
private class |
ReadOnlyObjectWrapper.ReadOnlyPropertyImpl |
class |
SimpleObjectProperty<T>
This class provides a full implementation of a
Property wrapping an
arbitrary Object . |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<java.lang.Integer> |
ReadOnlyIntegerProperty.asObject()
Creates a
ReadOnlyObjectProperty that holds the value
of this ReadOnlyIntegerProperty . |
ReadOnlyObjectProperty<java.lang.Float> |
ReadOnlyFloatProperty.asObject()
Creates a
ReadOnlyObjectProperty that holds the value
of this ReadOnlyFloatProperty . |
ReadOnlyObjectProperty<java.lang.Double> |
ReadOnlyDoubleProperty.asObject()
Creates a
ReadOnlyObjectProperty that holds the value
of this ReadOnlyDoubleProperty . |
ReadOnlyObjectProperty<java.lang.Long> |
ReadOnlyLongProperty.asObject()
Creates a
ReadOnlyObjectProperty that holds the value
of this ReadOnlyLongProperty . |
ReadOnlyObjectProperty<java.lang.Boolean> |
ReadOnlyBooleanProperty.asObject()
Creates a
ReadOnlyObjectProperty that holds the value
of this ReadOnlyBooleanProperty . |
ReadOnlyObjectProperty<T> |
ReadOnlyObjectWrapper.getReadOnlyProperty()
Returns the readonly property, that is synchronized with this
ReadOnlyObjectWrapper . |
Modifier and Type | Class and Description |
---|---|
class |
JavaBeanObjectProperty<T>
A
JavaBeanObjectProperty provides an adapter between a regular
Java Bean property of type T and a JavaFX
ObjectProperty<T> . |
class |
ReadOnlyJavaBeanObjectProperty<T>
A
ReadOnlyJavaBeanObjectProperty provides an adapter between a regular
read only Java Bean property of T and a JavaFX
ReadOnlyObjectProperty . |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Duration> |
ScheduledService.cumulativePeriodProperty() |
ReadOnlyObjectProperty<java.lang.Throwable> |
Task.exceptionProperty() |
ReadOnlyObjectProperty<java.lang.Throwable> |
Worker.exceptionProperty()
Gets the ReadOnlyObjectProperty representing any exception which occurred.
|
ReadOnlyObjectProperty<java.lang.Throwable> |
Service.exceptionProperty() |
ReadOnlyObjectProperty<V> |
ScheduledService.lastValueProperty() |
ReadOnlyObjectProperty<Worker.State> |
Task.stateProperty() |
ReadOnlyObjectProperty<Worker.State> |
Worker.stateProperty()
Gets the ReadOnlyObjectProperty representing the current state.
|
ReadOnlyObjectProperty<Worker.State> |
Service.stateProperty() |
ReadOnlyObjectProperty<V> |
Task.valueProperty() |
ReadOnlyObjectProperty<V> |
Worker.valueProperty()
Gets the ReadOnlyObjectProperty representing the value.
|
ReadOnlyObjectProperty<V> |
Service.valueProperty() |
Modifier and Type | Class and Description |
---|---|
class |
SimpleStyleableObjectProperty<T>
This class extends
SimpleObjectProperty and provides a full
implementation of a StyleableProperty . |
class |
StyleableObjectProperty<T>
This class extends
ObjectPropertyBase and provides a partial
implementation of a StyleableProperty . |
Modifier and Type | Method and Description |
---|---|
static ReadOnlyObjectProperty<Printer> |
Printer.defaultPrinterProperty()
A read only object property representing the current default printer.
|
ReadOnlyObjectProperty<PrinterJob.JobStatus> |
PrinterJob.jobStatusProperty()
A read only object property representing the current
JobStatus |
Modifier and Type | Class and Description |
---|---|
private class |
ImageCursor.ObjectPropertyImpl<T> |
private class |
Node.EffectiveOrientationProperty |
private static class |
Node.LazyBoundsProperty |
private static class |
Node.LazyTransformProperty |
(package private) class |
Node.NodeTransformation.LocalToSceneTransformProperty |
private class |
Node.ReadOnlyObjectWrapperManualFire<T> |
private class |
Scene.EffectiveOrientationProperty |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Bounds> |
Node.boundsInLocalProperty()
The rectangular bounds of this
Node in the node's
untransformed local coordinate space. |
ReadOnlyObjectProperty<Bounds> |
Node.MiscProperties.boundsInLocalProperty() |
ReadOnlyObjectProperty<Bounds> |
Node.boundsInParentProperty()
The rectangular bounds of this
Node which include its transforms. |
ReadOnlyObjectProperty<Bounds> |
Node.MiscProperties.boundsInParentProperty() |
ReadOnlyObjectProperty<NodeOrientation> |
Scene.effectiveNodeOrientationProperty()
The effective node orientation of a scene resolves the inheritance of
node orientation, returning either left-to-right or right-to-left.
|
ReadOnlyObjectProperty<NodeOrientation> |
Node.effectiveNodeOrientationProperty()
The effective orientation of a node resolves the inheritance of
node orientation, returning either left-to-right or right-to-left.
|
ReadOnlyObjectProperty<Node> |
Scene.focusOwnerProperty() |
ReadOnlyObjectProperty<Image> |
ImageCursor.imageProperty() |
ReadOnlyObjectProperty<Bounds> |
Node.layoutBoundsProperty() |
ReadOnlyObjectProperty<Transform> |
Node.localToParentTransformProperty()
An affine transform that holds the computed local-to-parent transform.
|
ReadOnlyObjectProperty<Transform> |
Node.NodeTransformation.localToParentTransformProperty() |
ReadOnlyObjectProperty<Transform> |
Node.localToSceneTransformProperty()
An affine transform that holds the computed local-to-scene transform.
|
ReadOnlyObjectProperty<Transform> |
Node.NodeTransformation.localToSceneTransformProperty() |
ReadOnlyObjectProperty<Parent> |
Node.parentProperty() |
ReadOnlyObjectProperty<Scene> |
Node.sceneProperty() |
ReadOnlyObjectProperty<Window> |
Scene.windowProperty() |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<XYChart<X,Y>> |
XYChart.Series.chartProperty() |
ReadOnlyObjectProperty<PieChart> |
PieChart.Data.chartProperty() |
ReadOnlyObjectProperty<Node> |
PieChart.Data.nodeProperty() |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<java.util.Comparator<TreeItem<S>>> |
TreeTableView.comparatorProperty() |
ReadOnlyObjectProperty<java.util.Comparator<S>> |
TableView.comparatorProperty() |
ReadOnlyObjectProperty<TreeTablePosition<S,?>> |
TreeTableView.editingCellProperty()
Represents the current cell being edited, or null if
there is no cell being edited.
|
ReadOnlyObjectProperty<TablePosition<S,?>> |
TableView.editingCellProperty()
Represents the current cell being edited, or null if
there is no cell being edited.
|
ReadOnlyObjectProperty<TreeItem<T>> |
TreeView.editingItemProperty()
A property used to represent the TreeItem currently being edited
in the TreeView, if editing is taking place, or null if no item is being edited.
|
ReadOnlyObjectProperty<TextField> |
ComboBox.editorProperty() |
ReadOnlyObjectProperty<TextField> |
DatePicker.editorProperty() |
ReadOnlyObjectProperty<TextField> |
Spinner.editorProperty()
The editor used by the Spinner control.
|
ReadOnlyObjectProperty<TreeTablePosition<S,?>> |
TreeTableView.TreeTableViewFocusModel.focusedCellProperty() |
ReadOnlyObjectProperty<TablePosition> |
TableView.TableViewFocusModel.focusedCellProperty() |
ReadOnlyObjectProperty<T> |
FocusModel.focusedItemProperty() |
ReadOnlyObjectProperty<Insets> |
Labeled.labelPaddingProperty()
The padding around the Labeled's text and graphic content.
|
ReadOnlyObjectProperty<ListView<T>> |
ListCell.listViewProperty() |
ReadOnlyObjectProperty<TableColumnBase<S,?>> |
TableColumnBase.parentColumnProperty() |
ReadOnlyObjectProperty<Menu> |
MenuItem.parentMenuProperty() |
ReadOnlyObjectProperty<ContextMenu> |
MenuItem.parentPopupProperty() |
ReadOnlyObjectProperty<TreeItem<T>> |
TreeItem.parentProperty()
A property that represents the parent of this TreeItem.
|
ReadOnlyObjectProperty<T> |
ChoiceDialog.selectedItemProperty()
Returns the property representing the currently selected item in the dialog.
|
ReadOnlyObjectProperty<T> |
SelectionModel.selectedItemProperty()
Refers to the selected item property, which is used to indicate
the currently selected item in the selection model.
|
ReadOnlyObjectProperty<Toggle> |
ToggleGroup.selectedToggleProperty()
The selected toggle.
|
ReadOnlyObjectProperty<IndexRange> |
TextInputControl.selectionProperty() |
ReadOnlyObjectProperty<TableColumn<S,T>> |
TableCell.tableColumnProperty()
The TableColumn instance that backs this TableCell.
|
ReadOnlyObjectProperty<TreeTableColumn<S,T>> |
TreeTableCell.tableColumnProperty() |
ReadOnlyObjectProperty<TableRow> |
TableCell.tableRowProperty() |
ReadOnlyObjectProperty<TreeTableRow<S>> |
TreeTableCell.tableRowProperty() |
ReadOnlyObjectProperty<TableView<S>> |
TableColumn.tableViewProperty() |
ReadOnlyObjectProperty<TableView<T>> |
TableRow.tableViewProperty()
The TableView associated with this Cell.
|
ReadOnlyObjectProperty<TableView<S>> |
TableCell.tableViewProperty()
The TableView associated with this TableCell.
|
ReadOnlyObjectProperty<TabPane> |
Tab.tabPaneProperty()
The TabPane that contains this tab.
|
ReadOnlyObjectProperty<TreeItem<T>> |
TreeCell.treeItemProperty()
Each TreeCell represents at most a single
TreeItem , which is
represented by this property. |
ReadOnlyObjectProperty<TreeItem<T>> |
TreeTableRow.treeItemProperty()
Each TreeTableCell represents at most a single
TreeItem , which is
represented by this property. |
ReadOnlyObjectProperty<TreeTableView<S>> |
TreeTableColumn.treeTableViewProperty() |
ReadOnlyObjectProperty<TreeTableView<T>> |
TreeTableRow.treeTableViewProperty()
A TreeTableCell is explicitly linked to a single
TreeTableView instance,
which is represented by this property. |
ReadOnlyObjectProperty<TreeTableView<S>> |
TreeTableCell.treeTableViewProperty() |
ReadOnlyObjectProperty<TreeView<T>> |
TreeCell.treeViewProperty()
A TreeCell is explicitly linked to a single
TreeView instance,
which is represented by this property. |
ReadOnlyObjectProperty<T> |
Spinner.valueProperty() |
Modifier and Type | Class and Description |
---|---|
(package private) class |
Effect.EffectInputProperty |
Modifier and Type | Class and Description |
---|---|
private class |
Image.ObjectPropertyImpl<T> |
Modifier and Type | Method and Description |
---|---|
(package private) ReadOnlyObjectProperty<PlatformImage> |
Image.acc_platformImageProperty() |
ReadOnlyObjectProperty<java.lang.Exception> |
Image.exceptionProperty() |
Modifier and Type | Class and Description |
---|---|
private class |
BorderPane.BorderPositionProperty
*
Private Inner Class *
*
|
private class |
Region.InsetsProperty |
private class |
Region.ShapeProperty
An implementation for the ShapeProperty.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Insets> |
Region.insetsProperty() |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Duration> |
MediaPlayer.bufferProgressTimeProperty() |
ReadOnlyObjectProperty<Duration> |
MediaPlayer.currentTimeProperty() |
ReadOnlyObjectProperty<Duration> |
MediaPlayer.cycleDurationProperty() |
ReadOnlyObjectProperty<Duration> |
Media.durationProperty() |
ReadOnlyObjectProperty<MediaException> |
MediaPlayer.errorProperty() |
ReadOnlyObjectProperty<MediaException> |
Media.errorProperty() |
ReadOnlyObjectProperty<MediaPlayer.Status> |
MediaPlayer.statusProperty() |
ReadOnlyObjectProperty<Duration> |
MediaPlayer.totalDurationProperty() |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<PathElement[]> |
Text.impl_caretShapeProperty()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
ReadOnlyObjectProperty<PathElement[]> |
Text.TextAttribute.impl_caretShapeProperty()
Deprecated.
|
ReadOnlyObjectProperty<PathElement[]> |
Text.impl_selectionShapeProperty()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
ReadOnlyObjectProperty<PathElement[]> |
Text.TextAttribute.impl_selectionShapeProperty()
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
private class |
WebEngine.DocumentProperty |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<org.w3c.dom.Document> |
WebEngine.documentProperty()
Document object for the current Web page.
|
ReadOnlyObjectProperty<java.lang.Throwable> |
WebEngine.LoadWorker.exceptionProperty() |
ReadOnlyObjectProperty<java.util.Date> |
WebHistory.Entry.lastVisitedDateProperty()
Defines the
Date the page was last visited. |
ReadOnlyObjectProperty<Worker.State> |
WebEngine.LoadWorker.stateProperty() |
ReadOnlyObjectProperty<java.lang.String> |
WebHistory.Entry.titleProperty()
Defines the title of the page.
|
ReadOnlyObjectProperty<java.lang.Void> |
WebEngine.LoadWorker.valueProperty() |
Modifier and Type | Class and Description |
---|---|
private class |
Window.SceneModel |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Node> |
PopupWindow.ownerNodeProperty() |
ReadOnlyObjectProperty<Window> |
PopupWindow.ownerWindowProperty() |
ReadOnlyObjectProperty<Scene> |
Window.sceneProperty() |
private ReadOnlyObjectProperty<Screen> |
Window.screenProperty() |