Uses of Interface
javafx.beans.property.Property
Packages that use Property
Package
Description
-
Uses of Property in com.sun.javafx.binding
Methods in com.sun.javafx.binding with parameters of type PropertyModifier and TypeMethodDescriptionstatic <T> Object
BidirectionalBinding.bind
(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) static <T> BidirectionalBinding
static <T> void
Constructors in com.sun.javafx.binding with parameters of type PropertyModifierConstructorDescriptionStringConversionBidirectionalBinding
(Property<String> stringProperty, Property<T> otherProperty) -
Uses of Property in dev.webfx.kit.mapper.peers.javafxgraphics.markers
Methods in dev.webfx.kit.mapper.peers.javafxgraphics.markers that return PropertyModifier and TypeMethodDescriptionHasAlignmentProperty.alignmentProperty()
HasAutoSizeChildrenProperty.autoSizeChildrenProperty()
HasBackgroundProperty.backgroundProperty()
HasBlendModeProperty.blendModeProperty()
HasBorderProperty.borderProperty()
HasClipProperty.clipProperty()
HasColumnHalignmentProperty.columnHalignmentProperty()
HasEffectProperty.effectProperty()
HasFillHeightProperty.fillHeightProperty()
HasFillProperty.fillProperty()
HasFillWidthProperty.fillWidthProperty()
HasFontProperty.fontProperty()
HasImageProperty.imageProperty()
HasImageUrlProperty.imageUrlProperty()
HasManagedProperty.managedProperty()
HasMouseTransparentProperty.mouseTransparentProperty()
HasNodeProperty.nodeProperty()
HasOrientationProperty.orientationProperty()
HasPaddingProperty.paddingProperty()
HasParentProperty.parentProperty()
HasPromptTextProperty.promptTextProperty()
HasRootProperty.rootProperty()
HasRowValignmentProperty.rowValignmentProperty()
HasSceneProperty.sceneProperty()
HasSelectedProperty.selectedProperty()
HasSmoothProperty.smoothProperty()
HasSnapToPixelProperty.snapToPixelProperty()
HasStrokeLineCapProperty.strokeLineCapProperty()
HasStrokeLineJoinProperty.strokeLineJoinProperty()
HasStrokeProperty.strokeProperty()
HasStrokeTypeProperty.strokeTypeProperty()
HasTextAlignmentProperty.textAlignmentProperty()
HasTextFillProperty.textFillProperty()
HasTextOriginProperty.textOriginProperty()
HasTitleProperty.titleProperty()
HasVisibleProperty.visibleProperty()
-
Uses of Property in dev.webfx.kit.util.properties
Methods in dev.webfx.kit.util.properties with parameters of type PropertyModifier and TypeMethodDescriptionstatic <A,
B> void FXProperties.bindConverted
(Property<A> pA, ObservableValue<B> pB, Function<B, A> baConverter) static <A,
B> void FXProperties.bindConvertedBidirectional
(Property<A> pA, Property<B> pB, Function<B, A> baConverter, Function<A, B> abConverter) static <T> void
FXProperties.setEvenIfBound
(Property<T> property, T value) static <T> void
FXProperties.setIfNotBound
(Property<T> property, T value) static <T> void
FXProperties.setIfNotEquals
(Property<T> property, T value) -
Uses of Property in dev.webfx.kit.util.properties.conversion
Classes in dev.webfx.kit.util.properties.conversion that implement PropertyMethods in dev.webfx.kit.util.properties.conversion with parameters of type PropertyModifier and TypeMethodDescriptionvoid
ConvertedProperty.bindBidirectional
(Property<A> other) static ConvertedProperty<Integer,
Double> ConvertedProperty.doubleToIntegerProperty
(Property<Double> doubleProperty) static ConvertedProperty<Double,
Integer> ConvertedProperty.integerToDoubleProperty
(Property<Integer> numberProperty) static ConvertedProperty<Double,
Number> ConvertedProperty.numberToDoubleProperty
(Property<Number> numberProperty) static ConvertedProperty<Integer,
Number> ConvertedProperty.numberToIntegerProperty
(Property<Number> numberProperty) void
ConvertedProperty.unbindBidirectional
(Property<A> other) Constructors in dev.webfx.kit.util.properties.conversion with parameters of type PropertyModifierConstructorDescriptionConvertedProperty
(Property<B> property, dev.webfx.platform.util.function.Converter<A, B> aToBConverter, dev.webfx.platform.util.function.Converter<B, A> bToAConverter) ConvertedProperty
(Property<B> property, dev.webfx.platform.util.function.Converter<B, A> bToAConverter) -
Uses of Property in javafx.animation
Methods in javafx.animation that return PropertyModifier and TypeMethodDescriptionAnimation.autoReverseProperty()
Defines whether thisAnimation
reverses direction on alternating cycles.Animation.cycleCountProperty()
Defines the number of cycles in this animation. -
Uses of Property in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type PropertyModifier and TypeMethodDescriptionstatic <T> void
Bindings.bindBidirectional
(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) Generates a bidirectional binding (or "bind with inverse") between aString
-Property
and anotherProperty
using the specifiedStringConverter
for conversion.static <T> void
Bindings.bindBidirectional
(Property<T> property1, Property<T> property2) Generates a bidirectional binding (or "bind with inverse") between two instances ofProperty
.static <T> void
Bindings.unbindBidirectional
(Property<T> property1, Property<T> property2) Delete a bidirectional binding that was previously defined withBindings.bindBidirectional(Property, Property)
. -
Uses of Property in javafx.beans.property
Classes in javafx.beans.property that implement PropertyModifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
This class defines aProperty
wrapping adouble
value.class
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
This class defines aProperty
wrapping anint
value.class
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
ListProperty<E>
This class provides a full implementation of aProperty
wrapping aObservableList
.class
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
This class defines aProperty
wrapping along
value.class
The classLongPropertyBase
is the base class for a property wrapping along
value.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping aboolean
value.class
This class provides a full implementation of aProperty
wrapping adouble
value.class
This class provides a full implementation of aProperty
wrapping aint
value.class
This class provides a full implementation of aProperty
wrapping anObservableList
.class
This class provides a full implementation of aProperty
wrapping along
value.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
This class provides a full implementation of aProperty
wrapping aString
value.class
This class provides a full implementation of aProperty
wrapping aString
value.class
The classStringPropertyBase
is the base class for a property wrapping aString
value.Methods in javafx.beans.property with parameters of type PropertyModifier and TypeMethodDescriptionvoid
BooleanProperty.bindBidirectional
(Property<Boolean> other) Create a bidirectional binding between thisProperty
and another one.void
DoubleProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
IntegerProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
ListProperty.bindBidirectional
(Property<ObservableList<E>> other) Create a bidirectional binding between thisProperty
and another one.void
LongProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
ObjectProperty.bindBidirectional
(Property<T> other) Create a bidirectional binding between thisProperty
and another one.void
Property.bindBidirectional
(Property<T> other) Create a bidirectional binding between thisProperty
and another one.void
StringProperty.bindBidirectional
(Property<String> other) Create a bidirectional binding between thisProperty
and another one.<T> void
StringProperty.bindBidirectional
(Property<T> other, StringConverter<T> converter) Create a bidirectional binding between thisStringProperty
and another arbitrary property.void
BooleanProperty.unbindBidirectional
(Property<Boolean> other) Remove a bidirectional binding between thisProperty
and another one.void
DoubleProperty.unbindBidirectional
(Property<Number> other) Remove a bidirectional binding between thisProperty
and another one.void
IntegerProperty.unbindBidirectional
(Property<Number> other) Remove a bidirectional binding between thisProperty
and another one.void
ListProperty.unbindBidirectional
(Property<ObservableList<E>> other) Remove a bidirectional binding between thisProperty
and another one.void
LongProperty.unbindBidirectional
(Property<Number> other) Remove a bidirectional binding between thisProperty
and another one.void
ObjectProperty.unbindBidirectional
(Property<T> other) Remove a bidirectional binding between thisProperty
and another one.void
Property.unbindBidirectional
(Property<T> other) Remove a bidirectional binding between thisProperty
and another one.void
StringProperty.unbindBidirectional
(Property<String> other) Remove a bidirectional binding between thisProperty
and another one. -
Uses of Property in javafx.css
Classes in javafx.css that implement PropertyModifier and TypeClassDescriptionclass
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of Property in javafx.scene
Methods in javafx.scene that return PropertyModifier and TypeMethodDescriptionGroup.autoSizeChildrenProperty()
Node.blendModeProperty()
Node.cacheHintProperty()
Node.clipProperty()
Node.effectProperty()
Scene.focusOwnerProperty()
The scene's current focus owner node.Parent.needsLayoutProperty()
Indicates that this Node and its subnodes requires a layout pass on the next pulse.Node.parentProperty()
Scene.rootProperty()
-
Uses of Property in javafx.scene.control
Methods in javafx.scene.control that return PropertyModifier and TypeMethodDescriptionLabeled.alignmentProperty()
TextField.alignmentProperty()
ComboBoxBase.armedProperty()
Indicates that the ComboBox has been "armed" such that a mouse release will cause the ComboBoxComboBoxBase.show()
method to be invoked.Button.cancelButtonProperty()
A Cancel Button is the button that receives a keyboard VK_ESC press, if no other node in the scene consumes it.Dialog.contentTextProperty()
A property representing the content text for the dialog pane.DialogPane.contentTextProperty()
A property representing the content text for the dialog pane.final Property<StringConverter<LocalDate>>
DatePicker.converterProperty()
Button.defaultButtonProperty()
A default Button is the button that receives a keyboard VK_ENTER press, if no other node in the scene consumes it.Cell.editableProperty()
A property representing whether this cell is allowed to be put into an editing state.ComboBoxBase.editableProperty()
Specifies whether the ComboBox allows for user input.DialogPane.expandedProperty()
Represents whether the dialogPane is expanded.Labeled.fontProperty()
TextInputControl.fontProperty()
ScrollPane.hbarPolicyProperty()
Dialog.headerTextProperty()
A property representing the header text for the dialog pane.DialogPane.headerTextProperty()
A property representing the header text for the dialog pane.Labeled.imageUrlProperty()
Labeled.labelPaddingProperty()
The padding around the Labeled's text and graphic content.Dialog.resizableProperty()
Represents whether the dialog is resizable.Toggle.selectedProperty()
The selected state for thisToggle
.ChoiceBox.showingProperty()
Indicates whether the drop down is displaying the list of choices to the user.Labeled.textAlignmentProperty()
TextField.textAlignmentProperty()
Labeled.textFillProperty()
Dialog.titleProperty()
Return the titleProperty of the dialog.ScrollPane.vbarPolicyProperty()
Hyperlink.visitedProperty()
Indicates whether this link has already been "visited".Labeled.wrapTextProperty()
If a run of text exceeds the width of the Labeled, then this variable indicates whether the text should wrap onto another line. -
Uses of Property in javafx.scene.image
Methods in javafx.scene.image that return Property -
Uses of Property in javafx.scene.layout
Methods in javafx.scene.layout that return PropertyModifier and TypeMethodDescriptionRegion.backgroundProperty()
Region.borderProperty()
RowConstraints.fillHeightProperty()
The vertical fill policy for the row.ColumnConstraints.fillWidthProperty()
The horizontal fill policy for the column.GridPane.gridLinesVisibleProperty()
For debug purposes only: controls whether lines are displayed to show the gridpane's rows and columns.Region.insetsProperty()
The insets of the Region define the distance from the edge of the region (its layout bounds, or (0, 0, width, height)) to the edge of the content area.Region.paddingProperty()
Region.snapToPixelProperty()
-
Uses of Property in javafx.scene.text
Methods in javafx.scene.text that return PropertyModifier and TypeMethodDescriptionfinal Property<TextBoundsType>
Text.boundsTypeProperty()
Determines how the bounds of the text node are calculated.Text.fontProperty()
Text.textAlignmentProperty()
Text.textOriginProperty()
-
Uses of Property in javafx.stage
Methods in javafx.stage that return PropertyModifier and TypeMethodDescriptionStage.resizableProperty()
Defines whether theStage
is resizable or not by the user.Window.sceneProperty()
Stage.titleProperty()