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> ObjectBidirectionalBinding.bind(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) static <T> BidirectionalBindingstatic <T> voidConstructors 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> voidFXProperties.setEvenIfBound(Property<T> property, T value) static <T> voidFXProperties.setIfNotBound(Property<T> property, T value) static <T> voidFXProperties.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 TypeMethodDescriptionvoidConvertedProperty.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) voidConvertedProperty.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 thisAnimationreverses 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> voidBindings.bindBidirectional(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) Generates a bidirectional binding (or "bind with inverse") between aString-Propertyand anotherPropertyusing the specifiedStringConverterfor conversion.static <T> voidBindings.bindBidirectional(Property<T> property1, Property<T> property2) Generates a bidirectional binding (or "bind with inverse") between two instances ofProperty.static <T> voidBindings.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 TypeClassDescriptionclassThis class provides a full implementation of aPropertywrapping abooleanvalue.classThe classBooleanPropertyBaseis the base class for a property wrapping abooleanvalue.classThis class defines aPropertywrapping adoublevalue.classThe classDoublePropertyBaseis the base class for a property wrapping adoublevalue.classThis class defines aPropertywrapping anintvalue.classThe classIntegerPropertyBaseis the base class for a property wrapping aintvalue.classListProperty<E>This class provides a full implementation of aPropertywrapping aObservableList.classThe classListPropertyBaseis the base class for a property wrapping anObservableList.classThis class defines aPropertywrapping alongvalue.classThe classLongPropertyBaseis the base class for a property wrapping alongvalue.classThis class provides a full implementation of aPropertywrapping an arbitraryObject.classThe classObjectPropertyBaseis the base class for a property wrapping an arbitraryObject.classThis class provides a convenient class to define read-only properties.classThis class provides a full implementation of aPropertywrapping abooleanvalue.classThis class provides a full implementation of aPropertywrapping adoublevalue.classThis class provides a full implementation of aPropertywrapping aintvalue.classThis class provides a full implementation of aPropertywrapping anObservableList.classThis class provides a full implementation of aPropertywrapping alongvalue.classThis class provides a full implementation of aPropertywrapping an arbitraryObject.classThis class provides a full implementation of aPropertywrapping aStringvalue.classThis class provides a full implementation of aPropertywrapping aStringvalue.classThe classStringPropertyBaseis the base class for a property wrapping aStringvalue.Methods in javafx.beans.property with parameters of type PropertyModifier and TypeMethodDescriptionvoidBooleanProperty.bindBidirectional(Property<Boolean> other) Create a bidirectional binding between thisPropertyand another one.voidDoubleProperty.bindBidirectional(Property<Number> other) Create a bidirectional binding between thisPropertyand another one.voidIntegerProperty.bindBidirectional(Property<Number> other) Create a bidirectional binding between thisPropertyand another one.voidListProperty.bindBidirectional(Property<ObservableList<E>> other) Create a bidirectional binding between thisPropertyand another one.voidLongProperty.bindBidirectional(Property<Number> other) Create a bidirectional binding between thisPropertyand another one.voidObjectProperty.bindBidirectional(Property<T> other) Create a bidirectional binding between thisPropertyand another one.voidProperty.bindBidirectional(Property<T> other) Create a bidirectional binding between thisPropertyand another one.voidStringProperty.bindBidirectional(Property<String> other) Create a bidirectional binding between thisPropertyand another one.<T> voidStringProperty.bindBidirectional(Property<T> other, StringConverter<T> converter) Create a bidirectional binding between thisStringPropertyand another arbitrary property.voidBooleanProperty.unbindBidirectional(Property<Boolean> other) Remove a bidirectional binding between thisPropertyand another one.voidDoubleProperty.unbindBidirectional(Property<Number> other) Remove a bidirectional binding between thisPropertyand another one.voidIntegerProperty.unbindBidirectional(Property<Number> other) Remove a bidirectional binding between thisPropertyand another one.voidListProperty.unbindBidirectional(Property<ObservableList<E>> other) Remove a bidirectional binding between thisPropertyand another one.voidLongProperty.unbindBidirectional(Property<Number> other) Remove a bidirectional binding between thisPropertyand another one.voidObjectProperty.unbindBidirectional(Property<T> other) Remove a bidirectional binding between thisPropertyand another one.voidProperty.unbindBidirectional(Property<T> other) Remove a bidirectional binding between thisPropertyand another one.voidStringProperty.unbindBidirectional(Property<String> other) Remove a bidirectional binding between thisPropertyand another one. -
Uses of Property in javafx.css
Classes in javafx.css that implement PropertyModifier and TypeClassDescriptionclassThis class extendsBooleanPropertyBaseand provides a partial implementation of aStyleableProperty.classThis class extendsIntegerPropertyBaseand provides a partial implementation of aStyleableProperty.classThis class extendsObjectPropertyBaseand 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 theStageis resizable or not by the user.Window.sceneProperty()Stage.titleProperty()