Uses of Interface
javafx.beans.property.Property
-
Packages that use Property 软件包 描述 javafx.beans.binding 提供在Binding上创建和操作的类,用于计算取决于一个或多个来源的值。javafx.beans.property 程序包javafx.beans.property定义只读属性和可写属性,加上一些实现。javafx.beans.property.adapter 提供各种类,作为常规Java Bean属性和对应的JavaFX Property之间的适配器。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。 -
-
Uses of Property in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type Property Modifier and Type 方法 描述 static voidBindings. bindBidirectional(Property<String> stringProperty, Property<?> otherProperty, Format format)在String-Property和另一个Property使用指定的Format生成双向绑定(或“反向绑定”)进行转换。static <T> voidBindings. bindBidirectional(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter)在String-Property和另一个Property使用指定的StringConverter生成双向绑定(或“反向绑定”)进行转换。static <T> voidBindings. bindBidirectional(Property<T> property1, Property<T> property2)在Property的两个实例之间生成双向绑定(或“绑定反向”)。static <T> voidBindings. unbindBidirectional(Property<T> property1, Property<T> property2)删除先前使用Bindings.bindBidirectional(Property, Property)定义的双向绑定。 -
Uses of Property in javafx.beans.property
Classes in javafx.beans.property that implement Property Modifier and Type Class 描述 classBooleanPropertyclassBooleanPropertyBaseBooleanPropertyBase类是包含boolean值的属性的基类。classDoubleProperty这个类定义了一个Property包装double值。classDoublePropertyBaseDoublePropertyBase类是包含double值的属性的基类。classFloatProperty这个类定义了一个Property包装float值。classFloatPropertyBaseFloatPropertyBase类是包含float值的属性的基类。classIntegerProperty这个类定义了一个Property包装int值。classIntegerPropertyBaseIntegerPropertyBase类是包含int值的属性的基类。classListProperty<E>这个类提供了一个Property包装一个ObservableList的完整实现。classListPropertyBase<E>ListPropertyBase类是包装ObservableList的属性的基类。classLongProperty这个类定义了一个Property包装long值。classLongPropertyBaseLongPropertyBase类是包含long值的属性的基类。classMapProperty<K,V>这个类提供了一个Property包装一个ObservableMap的完整实现。classMapPropertyBase<K,V>MapPropertyBase类是包装ObservableMap的属性的基类。classObjectProperty<T>这个类提供了一个Property的全面实现,包含任意的Object。classObjectPropertyBase<T>ObjectPropertyBase类是包含任意Object的属性的基类。classReadOnlyBooleanWrapper该类提供了一个方便的类来定义只读属性。classReadOnlyDoubleWrapper该类提供了一个方便的类来定义只读属性。classReadOnlyFloatWrapper该类提供了一个方便的类来定义只读属性。classReadOnlyIntegerWrapper该类提供了一个方便的类来定义只读属性。classReadOnlyListWrapper<E>该类提供了一个方便的类来定义只读属性。classReadOnlyLongWrapper该类提供了一个方便的类来定义只读属性。classReadOnlyMapWrapper<K,V>该类提供了一个方便的类来定义只读属性。classReadOnlyObjectWrapper<T>该类提供了一个方便的类来定义只读属性。classReadOnlySetWrapper<E>该类提供了一个方便的类来定义只读属性。classReadOnlyStringWrapper该类提供了一个方便的类来定义只读属性。classSetProperty<E>这个类提供了一个Property包装一个ObservableSet的完整实现。classSetPropertyBase<E>SetPropertyBase类是包装ObservableSet的属性的基类。classSimpleBooleanPropertyclassSimpleDoublePropertyclassSimpleFloatPropertyclassSimpleIntegerPropertyclassSimpleListProperty<E>这个类提供了一个Property包装一个ObservableList的完整实现。classSimpleLongPropertyclassSimpleMapProperty<K,V>这个类提供了一个Property包装一个ObservableMap的完整实现。classSimpleObjectProperty<T>classSimpleSetProperty<E>这个类提供了一个Property包装一个ObservableSet的全面实现。classSimpleStringPropertyclassStringPropertyclassStringPropertyBaseStringPropertyBase类是包含String值的属性的基类。Methods in javafx.beans.property with parameters of type Property Modifier and Type 方法 描述 voidBooleanProperty. bindBidirectional(Property<Boolean> other)在这个Property和另一个之间创建双向绑定。voidDoubleProperty. bindBidirectional(Property<Number> other)在这个Property和另一个之间创建双向绑定。voidFloatProperty. bindBidirectional(Property<Number> other)在这个Property和另一个之间创建双向绑定。voidIntegerProperty. bindBidirectional(Property<Number> other)在这个Property之间创建一个双向绑定。voidListProperty. bindBidirectional(Property<ObservableList<E>> other)在这个Property和另一个之间创建双向绑定。voidLongProperty. bindBidirectional(Property<Number> other)在这个Property和另一个之间创建双向绑定。voidMapProperty. bindBidirectional(Property<ObservableMap<K,V>> other)在这个Property和另一个之间创建双向绑定。voidObjectProperty. bindBidirectional(Property<T> other)在这个Property和另一个之间创建双向绑定。voidProperty. bindBidirectional(Property<T> other)在这个Property和另一个之间创建双向绑定。voidSetProperty. bindBidirectional(Property<ObservableSet<E>> other)在这个Property和另一个之间创建双向绑定。voidStringProperty. bindBidirectional(Property<?> other, Format format)在这个StringProperty和另一个任意属性之间创建双向绑定。voidStringProperty. bindBidirectional(Property<String> other)在这个Property和另一个之间创建双向绑定。<T> voidStringProperty. bindBidirectional(Property<T> other, StringConverter<T> converter)在这个StringProperty和另一个任意属性之间创建双向绑定。static BooleanPropertyBooleanProperty. booleanProperty(Property<Boolean> property)返回一个BooleanProperty,其中包含一个Property。static DoublePropertyDoubleProperty. doubleProperty(Property<Double> property)返回一个DoubleProperty,它包装一个Property,并且双向绑定到它。static FloatPropertyFloatProperty. floatProperty(Property<Float> property)返回一个FloatProperty,它包裹一个Property并双向绑定到它。static IntegerPropertyIntegerProperty. integerProperty(Property<Integer> property)返回一个IntegerProperty,其中包含一个Property并双向绑定到它。static LongPropertyLongProperty. longProperty(Property<Long> property)返回一个LongProperty,它包装一个Property并双向绑定到它。voidBooleanProperty. unbindBidirectional(Property<Boolean> other)删除这个Property和另一个之间的双向绑定。voidDoubleProperty. unbindBidirectional(Property<Number> other)删除此Property和另一个之间的双向绑定。voidFloatProperty. unbindBidirectional(Property<Number> other)删除这个Property和另一个之间的双向绑定。voidIntegerProperty. unbindBidirectional(Property<Number> other)删除此Property和另一个之间的双向绑定。voidListProperty. unbindBidirectional(Property<ObservableList<E>> other)删除这个Property和另一个之间的双向绑定。voidLongProperty. unbindBidirectional(Property<Number> other)删除此Property和另一个之间的双向绑定。voidMapProperty. unbindBidirectional(Property<ObservableMap<K,V>> other)删除这个Property和另一个之间的双向绑定。voidObjectProperty. unbindBidirectional(Property<T> other)删除这个Property和另一个之间的双向绑定。voidProperty. unbindBidirectional(Property<T> other)删除此Property和另一个之间的双向绑定。voidSetProperty. unbindBidirectional(Property<ObservableSet<E>> other)删除这个Property和另一个之间的双向绑定。voidStringProperty. unbindBidirectional(Property<String> other)删除此Property和另一个之间的双向绑定。 -
Uses of Property in javafx.beans.property.adapter
Subinterfaces of Property in javafx.beans.property.adapter Modifier and Type 接口 描述 interfaceJavaBeanProperty<T>JavaBeanProperty是可写Java Bean属性和JavaFX属性之间的所有适配器的超级接口。Classes in javafx.beans.property.adapter that implement Property Modifier and Type Class 描述 classJavaBeanBooleanPropertyAJavaBeanBooleanProperty在boolean或Boolean之间的常规Java Bean属性和JavaFXBooleanProperty之间提供了一个适配器。classJavaBeanDoublePropertyAJavaBeanDoubleProperty在double或Double之间的常规Java Bean属性和JavaFXDoubleProperty之间提供了一个适配器。classJavaBeanFloatPropertyAJavaBeanFloatProperty在float或Float之间的常规Java Bean属性和JavaFXFloatProperty之间提供了一个适配器。classJavaBeanIntegerPropertyAJavaBeanIntegerProperty在int或Integer之间的常规Java Bean属性和JavaFXIntegerProperty之间提供了一个适配器。classJavaBeanLongPropertyAJavaBeanLongProperty在long或Long之间的常规Java Bean属性和JavaFXLongProperty之间提供了一个适配器。classJavaBeanObjectProperty<T>AJavaBeanObjectProperty在类型为T的常规Java Bean属性和JavaFXObjectProperty<T>之间提供了一个适配器。classJavaBeanStringPropertyAJavaBeanStringProperty在类型为String的常规Java Bean属性和JavaFXStringProperty之间提供了一个适配器。 -
Uses of Property in javafx.css
Classes in javafx.css that implement Property Modifier and Type Class 描述 classSimpleStyleableBooleanProperty这个类扩展了SimpleBooleanProperty并提供了一个StyleableProperty的完整实现。classSimpleStyleableDoubleProperty该课程扩展了SimpleDoubleProperty并提供了一个StyleableProperty的完整实现。classSimpleStyleableFloatProperty该课程扩展了SimpleFloatProperty并提供了一个StyleableProperty的完整实现。classSimpleStyleableIntegerProperty该课程扩展了SimpleIntegerProperty并提供了一个StyleableProperty的全面实现。classSimpleStyleableLongProperty这个类扩展了SimpleLongProperty并提供了一个StyleableProperty的完整实现。classSimpleStyleableObjectProperty<T>这个类扩展了SimpleObjectProperty并提供了一个StyleableProperty的完整实现。classSimpleStyleableStringProperty该课程扩展了SimpleStringProperty并提供了一个StyleableProperty的全面实现。classStyleableBooleanProperty这个类扩展了BooleanPropertyBase并提供了一个StyleableProperty的部分实现。classStyleableDoubleProperty这个类扩展了DoublePropertyBase并提供了一个StyleableProperty的部分实现。classStyleableFloatProperty这个类扩展了FloatPropertyBase并提供了一个StyleableProperty的部分实现。classStyleableIntegerProperty这个类扩展了IntegerPropertyBase并提供了一个StyleableProperty的部分实现。classStyleableLongProperty这个类扩展了LongPropertyBase并提供了一个StyleableProperty的部分实现。classStyleableObjectProperty<T>这个类扩展了ObjectPropertyBase并提供了一个StyleableProperty的部分实现。classStyleableStringProperty这个类扩展了StringPropertyBase并提供了一个StyleableProperty的部分实现。
-