Package | Description |
---|---|
javafx.beans.binding |
Characteristics of Bindings
|
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.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.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.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
ListBinding.sizeProperty() |
abstract ReadOnlyIntegerProperty |
ListExpression.sizeProperty()
An integer property that represents the size of the list.
|
ReadOnlyIntegerProperty |
MapBinding.sizeProperty() |
abstract ReadOnlyIntegerProperty |
MapExpression.sizeProperty()
An integer property that represents the size of the map.
|
ReadOnlyIntegerProperty |
SetBinding.sizeProperty() |
abstract ReadOnlyIntegerProperty |
SetExpression.sizeProperty()
An integer property that represents the size of the set.
|
Modifier and Type | Class and Description |
---|---|
class |
IntegerProperty
This class defines a
Property wrapping an int value. |
class |
IntegerPropertyBase
The class
IntegerPropertyBase is the base class for a property
wrapping a int value. |
class |
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping an
int . |
class |
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.
|
class |
SimpleIntegerProperty
This class provides a full implementation of a
Property wrapping a
int value. |
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
ReadOnlyIntegerWrapper.getReadOnlyProperty()
Returns the readonly property, that is synchronized with this
ReadOnlyIntegerWrapper . |
static <T extends Number> |
ReadOnlyIntegerProperty.readOnlyIntegerProperty(ReadOnlyProperty<T> property)
Returns a
ReadOnlyIntegerProperty that wraps a
ReadOnlyProperty . |
ReadOnlyIntegerProperty |
ListPropertyBase.sizeProperty() |
ReadOnlyIntegerProperty |
MapPropertyBase.sizeProperty() |
ReadOnlyIntegerProperty |
SetPropertyBase.sizeProperty() |
Modifier and Type | Class and Description |
---|---|
class |
JavaBeanIntegerProperty
A
JavaBeanIntegerProperty provides an adapter between a regular
Java Bean property of type int or Integer and a JavaFX
IntegerProperty . |
class |
ReadOnlyJavaBeanIntegerProperty
A
ReadOnlyJavaBeanIntegerProperty provides an adapter between a regular
read only Java Bean property of type int or Integer and a JavaFX
ReadOnlyIntegerProperty . |
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
ScheduledService.currentFailureCountProperty()
The current number of times the ScheduledService has failed.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleStyleableIntegerProperty
This class extends
SimpleIntegerProperty and provides a full
implementation of a StyleableProperty . |
class |
StyleableIntegerProperty
This class extends
IntegerPropertyBase and provides a partial
implementation of a StyleableProperty . |
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
PageRange.endPageProperty()
IntegerProperty representing the ending
page number of the range. |
ReadOnlyIntegerProperty |
PageRange.startPageProperty()
IntegerProperty representing the starting
page number of the range. |
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
TextInputControl.anchorProperty()
The
anchor of the text selection. |
ReadOnlyIntegerProperty |
TextInputControl.caretPositionProperty()
The current position of the caret within the text.
|
ReadOnlyIntegerProperty |
ListView.editingIndexProperty()
A property used to represent the index of the item currently being edited
in the ListView, if editing is taking place, or -1 if no item is being edited.
|
ReadOnlyIntegerProperty |
TreeTableView.expandedItemCountProperty()
Represents the number of tree nodes presently able to be visible in the
TreeTableView.
|
ReadOnlyIntegerProperty |
TreeView.expandedItemCountProperty()
Represents the number of tree nodes presently able to be visible in the
TreeView.
|
ReadOnlyIntegerProperty |
FocusModel.focusedIndexProperty()
The index of the current item in the FocusModel which has the focus.
|
ReadOnlyIntegerProperty |
IndexedCell.indexProperty()
|
ReadOnlyIntegerProperty |
TextInputControl.lengthProperty()
The number of characters in the text input.
|
ReadOnlyIntegerProperty |
SelectionModel.selectedIndexProperty()
Refers to the selected index property, which is used to indicate
the currently selected index value in the selection model.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
MediaPlayer.currentCountProperty()
The number of completed playback cycles.
|
ReadOnlyIntegerProperty |
Media.heightProperty()
The height in pixels of the source media.
|
ReadOnlyIntegerProperty |
Media.widthProperty()
The width in pixels of the source media.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyIntegerProperty |
WebHistory.currentIndexProperty()
Defines the index of the current
Entry in the history. |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.