Uses of Class
javafx.beans.property.ReadOnlyObjectProperty
-
Packages that use ReadOnlyObjectProperty 软件包 描述 javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,加上一些实现。javafx.beans.property.adapter 提供各种类,作为常规Java Bean属性和对应的JavaFX Property
之间的适配器。javafx.concurrent 提供javafx.task的一组类。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.print 提供JavaFX Printing API的公共类。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.chart JavaFX用户界面提供了一组图表组件,这是一种非常方便的数据可视化方式。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.scene.image 提供加载和显示图像的一组类。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.media 提供用于将音频和视频集成到Java FX应用程序中的一组类。javafx.scene.text 为字体和可渲染的文本节点提供一组类。javafx.scene.web 该软件包提供了加载和显示Web内容的方法。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of ReadOnlyObjectProperty in javafx.animation
Methods in javafx.animation that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Duration>
Animation. currentTimeProperty()
定义Animation
的播放头位置。ReadOnlyObjectProperty<Duration>
Animation. cycleDurationProperty()
只读变量,用于指示Animation
的一个周期的持续时间:从时间0到动画结束所需的时间(默认为rate
为1.0)。ReadOnlyObjectProperty<Animation.Status>
Animation. statusProperty()
的状态Animation
。ReadOnlyObjectProperty<Duration>
Animation. totalDurationProperty()
只读变量,用于指示此Animation
的总持续时间,包括重复。 -
Uses of ReadOnlyObjectProperty in javafx.beans.property
Subclasses of ReadOnlyObjectProperty in javafx.beans.property Modifier and Type Class 描述 class
ObjectProperty<T>
class
ObjectPropertyBase<T>
ObjectPropertyBase
类是包含任意Object
的属性的基类。class
ReadOnlyObjectPropertyBase<T>
所有只读属性的基类包装任意Object
。class
ReadOnlyObjectWrapper<T>
该类提供了一个方便的类来定义只读属性。class
SimpleObjectProperty<T>
这个类提供了一个Property
的完整实现,包装任意的Object
。Methods in javafx.beans.property that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Boolean>
ReadOnlyBooleanProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyBooleanProperty
。ReadOnlyObjectProperty<Double>
ReadOnlyDoubleProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyDoubleProperty
。ReadOnlyObjectProperty<Float>
ReadOnlyFloatProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyFloatProperty
。ReadOnlyObjectProperty<Integer>
ReadOnlyIntegerProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyIntegerProperty
。ReadOnlyObjectProperty<Long>
ReadOnlyLongProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyLongProperty
。ReadOnlyObjectProperty<T>
ReadOnlyObjectWrapper. getReadOnlyProperty()
返回readonly属性,与该ReadOnlyObjectWrapper
同步。 -
Uses of ReadOnlyObjectProperty in javafx.beans.property.adapter
Subclasses of ReadOnlyObjectProperty in javafx.beans.property.adapter Modifier and Type Class 描述 class
JavaBeanObjectProperty<T>
AJavaBeanObjectProperty
在类型为T
的常规Java Bean属性和JavaFXObjectProperty<T>
之间提供了一个适配器。class
ReadOnlyJavaBeanObjectProperty<T>
AReadOnlyJavaBeanObjectProperty
在常规只读Java Bean属性T
和JavaFXReadOnlyObjectProperty
之间提供了一个适配器。 -
Uses of ReadOnlyObjectProperty in javafx.concurrent
Methods in javafx.concurrent that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Duration>
ScheduledService. cumulativePeriodProperty()
迭代之间使用的当前累积周期。ReadOnlyObjectProperty<Throwable>
Service. exceptionProperty()
ReadOnlyObjectProperty<Throwable>
Task. exceptionProperty()
ReadOnlyObjectProperty<Throwable>
Worker. exceptionProperty()
获取表示发生的任何异常的ReadOnlyObjectProperty。ReadOnlyObjectProperty<V>
ScheduledService. lastValueProperty()
最后成功计算的值。ReadOnlyObjectProperty<Worker.State>
Service. stateProperty()
ReadOnlyObjectProperty<Worker.State>
Task. stateProperty()
ReadOnlyObjectProperty<Worker.State>
Worker. stateProperty()
获取表示当前状态的ReadOnlyObjectProperty。ReadOnlyObjectProperty<V>
Service. valueProperty()
ReadOnlyObjectProperty<V>
Task. valueProperty()
ReadOnlyObjectProperty<V>
Worker. valueProperty()
获取表示值的ReadOnlyObjectProperty。 -
Uses of ReadOnlyObjectProperty in javafx.css
Subclasses of ReadOnlyObjectProperty in javafx.css Modifier and Type Class 描述 class
SimpleStyleableObjectProperty<T>
这个类扩展了SimpleObjectProperty
并提供了一个StyleableProperty
的完整实现。class
StyleableObjectProperty<T>
这个类扩展了ObjectPropertyBase
并提供了一个StyleableProperty
的部分实现。 -
Uses of ReadOnlyObjectProperty in javafx.print
Methods in javafx.print that return ReadOnlyObjectProperty Modifier and Type 方法 描述 static ReadOnlyObjectProperty<Printer>
Printer. defaultPrinterProperty()
表示当前默认打印机的只读对象属性。ReadOnlyObjectProperty<PrinterJob.JobStatus>
PrinterJob. jobStatusProperty()
一个只读对象属性,代表当前的JobStatus
-
Uses of ReadOnlyObjectProperty in javafx.scene
-
Uses of ReadOnlyObjectProperty in javafx.scene.chart
Methods in javafx.scene.chart that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<PieChart>
PieChart.Data. chartProperty()
该数据所属的图表。ReadOnlyObjectProperty<XYChart<X,Y>>
XYChart.Series. chartProperty()
参考本系列所属的图表ReadOnlyObjectProperty<Node>
PieChart.Data. nodeProperty()
访问表示饼图切片的节点。 -
Uses of ReadOnlyObjectProperty in javafx.scene.control
-
Uses of ReadOnlyObjectProperty in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<TableColumn<S,T>>
TableCellSkin. tableColumnProperty()
负责此单元格的TableColumnBase实例。abstract ReadOnlyObjectProperty<? extends TableColumnBase<S,T>>
TableCellSkinBase. tableColumnProperty()
负责此单元格的TableColumnBase实例。ReadOnlyObjectProperty<TableColumnBase<?,?>>
TableColumnHeader. tableColumnProperty()
引用此头部视觉表示的TableColumnBase
实例的属性。ReadOnlyObjectProperty<TreeTableColumn<S,T>>
TreeTableCellSkin. tableColumnProperty()
负责此单元格的TableColumnBase实例。 -
Uses of ReadOnlyObjectProperty in javafx.scene.image
Methods in javafx.scene.image that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<异常>
Image. exceptionProperty()
导致图像加载失败的异常。 -
Uses of ReadOnlyObjectProperty in javafx.scene.layout
Methods in javafx.scene.layout that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Insets>
Region. insetsProperty()
区域的插图定义从区域边缘(其布局边界,或(0,0,宽度,高度))到内容区域边缘的距离。 -
Uses of ReadOnlyObjectProperty in javafx.scene.media
Methods in javafx.scene.media that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Duration>
MediaPlayer. bufferProgressTimeProperty()
当前的缓冲位置指示可以播放多少媒体,而不会停止MediaPlayer
。ReadOnlyObjectProperty<Duration>
MediaPlayer. currentTimeProperty()
当前媒体播放时间。ReadOnlyObjectProperty<Duration>
MediaPlayer. cycleDurationProperty()
ReadOnlyObjectProperty<Duration>
Media. durationProperty()
源介质的持续时间(以秒为单位)。ReadOnlyObjectProperty<MediaException>
Media. errorProperty()
发生错误时将属性设置为MediaException值。ReadOnlyObjectProperty<MediaException>
MediaPlayer. errorProperty()
如果发生错误,Observable属性设置为MediaException
。ReadOnlyObjectProperty<MediaPlayer.Status>
MediaPlayer. statusProperty()
MediaPlayer的当前状态。ReadOnlyObjectProperty<Duration>
MediaPlayer. totalDurationProperty()
播放时间的总量,如果允许玩,直到完成。 -
Uses of ReadOnlyObjectProperty in javafx.scene.text
Methods in javafx.scene.text that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<PathElement[]>
Text. caretShapeProperty()
ReadOnlyObjectProperty<PathElement[]>
Text. selectionShapeProperty()
-
Uses of ReadOnlyObjectProperty in javafx.scene.web
Methods in javafx.scene.web that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Document>
WebEngine. documentProperty()
当前网页的文档对象。ReadOnlyObjectProperty<Date>
WebHistory.Entry. lastVisitedDateProperty()
定义页面最后访问的Date
。ReadOnlyObjectProperty<String>
WebHistory.Entry. titleProperty()
定义页面的标题。 -
Uses of ReadOnlyObjectProperty in javafx.stage
Methods in javafx.stage that return ReadOnlyObjectProperty Modifier and Type 方法 描述 ReadOnlyObjectProperty<Node>
PopupWindow. ownerNodeProperty()
该弹出窗口的所有者的节点。ReadOnlyObjectProperty<Window>
PopupWindow. ownerWindowProperty()
作为此弹出窗口的父窗口。ReadOnlyObjectProperty<Scene>
Window. sceneProperty()
Scene
要在这个Window
上呈现。
-