Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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.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.image |
Provides the set of classes for loading and displaying images.
|
javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
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 | 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
KeyFrame with the largest time (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()
Defines the
Animation 's play head position. |
ReadOnlyObjectProperty<Duration> |
Animation.cycleDurationProperty()
Read-only variable to indicate the duration of one cycle of this
Animation : the time it takes to play from time 0 to the
KeyFrame with the largest time (at the default rate of
1.0). |
ReadOnlyObjectProperty<Animation.Status> |
Animation.statusProperty()
The status of the
Animation . |
ReadOnlyObjectProperty<Duration> |
Animation.totalDurationProperty()
Read-only variable to indicate the total duration of this
Animation , including repeats. |
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.
|
class |
SimpleObjectProperty<T>
This class provides a full implementation of a
Property wrapping an
arbitrary Object . |
Modifier and Type | Method and Description |
---|---|
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<java.lang.Throwable> |
Worker.exceptionProperty()
Gets the ReadOnlyObjectProperty representing any exception which occurred.
|
ReadOnlyObjectProperty<java.lang.Throwable> |
Task.exceptionProperty() |
ReadOnlyObjectProperty<java.lang.Throwable> |
Service.exceptionProperty() |
ReadOnlyObjectProperty<Worker.State> |
Worker.stateProperty()
Gets the ReadOnlyObjectProperty representing the current state.
|
ReadOnlyObjectProperty<Worker.State> |
Task.stateProperty() |
ReadOnlyObjectProperty<Worker.State> |
Service.stateProperty() |
ReadOnlyObjectProperty<V> |
Worker.valueProperty()
Gets the ReadOnlyObjectProperty representing the value.
|
ReadOnlyObjectProperty<V> |
Task.valueProperty() |
ReadOnlyObjectProperty<V> |
Service.valueProperty() |
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<Node> |
Scene.focusOwnerProperty()
The scene's current focus owner node.
|
ReadOnlyObjectProperty<Image> |
ImageCursor.imageProperty()
The image to display when the cursor is active.
|
ReadOnlyObjectProperty<Bounds> |
Node.layoutBoundsProperty()
The rectangular bounds that should be used for layout calculations for
this node.
|
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()
The parent of this
Node . |
ReadOnlyObjectProperty<Scene> |
Node.sceneProperty()
The
Scene that this Node is part of. |
ReadOnlyObjectProperty<Window> |
Scene.windowProperty()
The
Window for this Scene |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<XYChart<X,Y>> |
XYChart.Series.chartProperty()
Reference to the chart this series belongs to
|
ReadOnlyObjectProperty<PieChart> |
PieChart.Data.chartProperty()
The chart which this data belongs to.
|
Modifier and Type | Method and Description |
---|---|
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 -1 if no item is being edited.
|
ReadOnlyObjectProperty<TextField> |
ComboBox.editorProperty()
The editor for the ComboBox.
|
ReadOnlyObjectProperty<TablePosition> |
TableView.TableViewFocusModel.focusedCellProperty()
The position of the current item in the TableView which has the focus.
|
ReadOnlyObjectProperty<T> |
FocusModel.focusedItemProperty()
The current item in the FocusModel which has the focus.
|
ReadOnlyObjectProperty<Insets> |
Labeled.labelPaddingProperty()
The padding around the Labeled's text and graphic content.
|
ReadOnlyObjectProperty<ListView<T>> |
ListCell.listViewProperty()
The ListView associated with this Cell.
|
ReadOnlyObjectProperty<TableColumn<S,?>> |
TableColumn.parentColumnProperty()
This read-only property will always refer to the parent of this column,
in the situation where nested columns are being used.
|
ReadOnlyObjectProperty<Menu> |
MenuItem.parentMenuProperty()
This is the
Menu in which this MenuItem exists. |
ReadOnlyObjectProperty<ContextMenu> |
MenuItem.parentPopupProperty()
This is the
ContextMenu in which this MenuItem exists. |
ReadOnlyObjectProperty<TreeItem<T>> |
TreeItem.parentProperty()
A property that represents the parent of this TreeItem.
|
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()
The current selection.
|
ReadOnlyObjectProperty<TableColumn<S,T>> |
TableCell.tableColumnProperty()
The TableColumn instance that backs this TableCell.
|
ReadOnlyObjectProperty<TableRow> |
TableCell.tableRowProperty()
The TableRow that this TableCell currently finds itself placed within.
|
ReadOnlyObjectProperty<TableView<T>> |
TableRow.tableViewProperty()
The TableView associated with this Cell.
|
ReadOnlyObjectProperty<TableView<S>> |
TableColumn.tableViewProperty()
The TableView that this TableColumn belongs to.
|
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<TreeView<T>> |
TreeCell.treeViewProperty()
A TreeCell is explicitly linked to a single
TreeView instance,
which is represented by this property. |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<com.sun.javafx.tk.PlatformImage> |
Image.impl_platformImageProperty()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Duration> |
MediaPlayer.bufferProgressTimeProperty()
The current buffer position indicating how much media can be played
without stalling the
MediaPlayer . |
ReadOnlyObjectProperty<Duration> |
MediaPlayer.currentTimeProperty()
The current media playback time.
|
ReadOnlyObjectProperty<Duration> |
MediaPlayer.cycleDurationProperty()
|
ReadOnlyObjectProperty<Duration> |
Media.durationProperty()
The duration in seconds of the source media.
|
ReadOnlyObjectProperty<MediaException> |
MediaPlayer.errorProperty()
Observable property set to a
MediaException if an error occurs. |
ReadOnlyObjectProperty<MediaException> |
Media.errorProperty()
A property set to a MediaException value when an error occurs.
|
ReadOnlyObjectProperty<MediaPlayer.Status> |
MediaPlayer.statusProperty()
The current state of the MediaPlayer.
|
ReadOnlyObjectProperty<Duration> |
MediaPlayer.totalDurationProperty()
The total amount of play time if allowed to play until finished.
|
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 | Method and Description |
---|---|
ReadOnlyObjectProperty<Node> |
PopupWindow.ownerNodeProperty()
The node which is the owner of this popup.
|
ReadOnlyObjectProperty<Window> |
PopupWindow.ownerWindowProperty()
The window which is the parent of this popup.
|
ReadOnlyObjectProperty<Scene> |
Window.sceneProperty()
The
Scene to be rendered on this Stage . |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to