Uses of Interface
javafx.collections.ObservableList
-
Packages that use ObservableList 软件包 描述 javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.beans.binding 提供创建和操作的类,用于计算取决于一个或多个来源的值的Binding
。javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及一些实现。javafx.beans.value 包javafx.beans.value
包含两个基本接口ObservableValue
和WritableValue
及其所有子接口。javafx.collections 包含基本的JavaFX集合和集合实用程序javafx.collections.transformation 提供包装和转换(例如,排序或过滤)其他JavaFX集合的JavaFX集合。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.chart JavaFX用户界面提供了一组图表组件,这是一种非常方便的数据可视化方式。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.cell 所述javafx.scene.control.cell
包是所有细胞相关的类的位置,比所述核心类如其他Cell
,IndexedCell
,ListCell
,TreeCell
,和TableCell
。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.scene.input 提供一组用于鼠标和键盘输入事件处理的类。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.media 提供用于将音频和视频集成到Java FX应用程序中的一组类。javafx.scene.shape 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.scene.web 该软件包提供了加载和显示Web内容的方法。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of ObservableList in javafx.animation
Methods in javafx.animation that return ObservableList Modifier and Type 方法 描述 ObservableList<Animation>
ParallelTransition. getChildren()
将按顺序播放的Animations
的列表。ObservableList<Animation>
SequentialTransition. getChildren()
将按顺序播放的Animations
的列表。ObservableList<KeyFrame>
Timeline. getKeyFrames()
返回KeyFrames
的Timeline
。 -
Uses of ObservableList in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableList Modifier and Type Class 描述 class
ListBinding<E>
提供实现ObservableList
的Binding
所需的大部分功能的基类。class
ListExpression<E>
ListExpression
是一个ObservableListValue
加上额外的便利方法,以流利的风格生成绑定。Methods in javafx.beans.binding that return ObservableList Modifier and Type 方法 描述 protected abstract ObservableList<E>
ListBinding. computeValue()
计算此绑定的当前值。ObservableList<E>
ListBinding. get()
返回ListBinding.computeValue()
的结果。ObservableList<?>
Binding. getDependencies()
返回绑定在不可修改的依赖关系ObservableList
。ObservableList<?>
BooleanBinding. getDependencies()
默认执行getDependencies()
,返回一个空的ObservableList
。ObservableList<?>
DoubleBinding. getDependencies()
getDependencies()
的默认实现返回一个空的ObservableList
。ObservableList<?>
FloatBinding. getDependencies()
默认实现getDependencies()
,返回一个空的ObservableList
。ObservableList<?>
IntegerBinding. getDependencies()
默认实现getDependencies()
返回一个空的ObservableList
。ObservableList<?>
ListBinding. getDependencies()
默认实现getDependencies()
,返回一个空的ObservableList
。ObservableList<?>
LongBinding. getDependencies()
默认实现getDependencies()
,返回一个空的ObservableList
。ObservableList<?>
MapBinding. getDependencies()
getDependencies()
的默认实现返回一个空的ObservableList
。ObservableList<?>
ObjectBinding. getDependencies()
默认执行getDependencies()
,返回一个空的ObservableList
。ObservableList<?>
SetBinding. getDependencies()
getDependencies()
的默认实现返回一个空的ObservableList
。ObservableList<?>
StringBinding. getDependencies()
默认执行getDependencies()
,返回一个空的ObservableList
。ObservableList<E>
ListExpression. getValue()
Method parameters in javafx.beans.binding with type arguments of type ObservableList Modifier and Type 方法 描述 void
ListBinding. addListener(ChangeListener<? super ObservableList<E>> listener)
void
ListBinding. removeListener(ChangeListener<? super ObservableList<E>> listener)
-
Uses of ObservableList in javafx.beans.property
Classes in javafx.beans.property that implement ObservableList Modifier and Type Class 描述 class
ListProperty<E>
这个类提供了一个Property
的全面实现,包装了一个ObservableList
。class
ListPropertyBase<E>
ListPropertyBase
类是包装ObservableList
的属性的基类。class
ReadOnlyListProperty<E>
超类为所有只读属性包装一个ObservableList
。class
ReadOnlyListPropertyBase<E>
所有只读属性的基类包装一个ObservableList
。class
ReadOnlyListWrapper<E>
该类提供了一个方便的类来定义只读属性。class
SimpleListProperty<E>
这个类提供了一个Property
包装一个ObservableList
的完整实现。Methods in javafx.beans.property that return ObservableList Modifier and Type 方法 描述 ObservableList<E>
ListPropertyBase. get()
Methods in javafx.beans.property with parameters of type ObservableList Modifier and Type 方法 描述 void
ReadOnlyListProperty. bindContent(ObservableList<E> list)
在ObservableList
之间创建一个内容绑定,这是包裹在这个ReadOnlyListProperty
和另一个ObservableList
。void
ReadOnlyListProperty. bindContentBidirectional(ObservableList<E> list)
创建一个双向内容绑定的ObservableList
,即包装在这个ReadOnlyListProperty
和另一个ObservableList
。void
ListPropertyBase. set(ObservableList<E> newValue)
void
ListProperty. setValue(ObservableList<E> v)
设置包装的值。Method parameters in javafx.beans.property with type arguments of type ObservableList Modifier and Type 方法 描述 void
ListPropertyBase. addListener(ChangeListener<? super ObservableList<E>> listener)
void
ReadOnlyListPropertyBase. addListener(ChangeListener<? super ObservableList<E>> listener)
void
ListPropertyBase. bind(ObservableValue<? extends ObservableList<E>> newObservable)
void
ListProperty. bindBidirectional(Property<ObservableList<E>> other)
在这个Property
和另一个之间创建双向绑定。void
ListPropertyBase. removeListener(ChangeListener<? super ObservableList<E>> listener)
void
ReadOnlyListPropertyBase. removeListener(ChangeListener<? super ObservableList<E>> listener)
void
ListProperty. unbindBidirectional(Property<ObservableList<E>> other)
删除此Property
和另一个之间的双向绑定。Constructors in javafx.beans.property with parameters of type ObservableList Constructor 描述 ListPropertyBase(ObservableList<E> initialValue)
ListPropertyBase
的构造ListPropertyBase
。ReadOnlyListWrapper(Object bean, String name, ObservableList<E> initialValue)
构造函数为ReadOnlyListWrapper
ReadOnlyListWrapper(ObservableList<E> initialValue)
构造函数为ReadOnlyListWrapper
SimpleListProperty(Object bean, String name, ObservableList<E> initialValue)
构造函数为SimpleListProperty
SimpleListProperty(ObservableList<E> initialValue)
构造函数为SimpleListProperty
-
Uses of ObservableList in javafx.beans.value
Subinterfaces of ObservableList in javafx.beans.value Modifier and Type 接口 描述 interface
ObservableListValue<E>
一个可观察的参考一个ObservableList
。interface
WritableListValue<E>
可写参考一个ObservableList
。 -
Uses of ObservableList in javafx.collections
Classes in javafx.collections that implement ObservableList Modifier and Type Class 描述 class
ModifiableObservableListBase<E>
抽象类作为可修改的ObservableList
实现的基类。class
ObservableListBase<E>
抽象类,用作ObservableList
实现的基类。Methods in javafx.collections that return ObservableList Modifier and Type 方法 描述 static <E> ObservableList<E>
FXCollections. checkedObservableList(ObservableList<E> list, Class<E> type)
在提供的可观察列表之上创建并返回一个类型安全的包装器。static <E> ObservableList<E>
FXCollections. concat(ObservableList<E>... lists)
将更多可观察的列表连接成一个。static <E> ObservableList<E>
FXCollections. emptyObservableList()
创建和清空不可修改的可观察列表。ObservableList<E>
ListChangeListener.Change. getList()
源列表的更改。static <E> ObservableList<E>
FXCollections. observableArrayList()
创建一个由数组列表支持的新的可观察列表。static <E> ObservableList<E>
FXCollections. observableArrayList(E... items)
创建一个新的可观察数组列表,items
添加了items
。static <E> ObservableList<E>
FXCollections. observableArrayList(Collection<? extends E> col)
创建一个新的可观察数组列表,并向其添加一个集合col
的内容。static <E> ObservableList<E>
FXCollections. observableArrayList(Callback<E,Observable[]> extractor)
创建一个由arraylist支持的新的可观察列表。static <E> ObservableList<E>
FXCollections. observableList(List<E> list)
构造由指定列表支持的ObservableList。static <E> ObservableList<E>
FXCollections. observableList(List<E> list, Callback<E,Observable[]> extractor)
构造由指定列表支持的ObservableList。static <E> ObservableList<E>
FXCollections. singletonObservableList(E e)
使用单个元素创建一个不可修改的可观察列表。static <E> ObservableList<E>
FXCollections. synchronizedObservableList(ObservableList<E> list)
在提供的可观察列表之上创建并返回一个同步的包装器。static <E> ObservableList<E>
FXCollections. unmodifiableObservableList(ObservableList<E> list)
在提供的可观察列表之上创建并返回不可修改的包装器列表。Methods in javafx.collections with parameters of type ObservableList Modifier and Type 方法 描述 static <E> ObservableList<E>
FXCollections. checkedObservableList(ObservableList<E> list, Class<E> type)
在提供的可观察列表之上创建并返回一个类型安全的包装器。static <E> ObservableList<E>
FXCollections. concat(ObservableList<E>... lists)
将更多可观察的列表连接成一个。static <T> void
FXCollections. copy(ObservableList<? super T> dest, List<? extends T> src)
将元素从src复制到dest。static <T> void
FXCollections. fill(ObservableList<? super T> list, T obj)
用obj填写提供的列表。static <T> boolean
FXCollections. replaceAll(ObservableList<T> list, T oldVal, T newVal)
用newVal元素替换列表中的所有oldVal元素。static void
FXCollections. reverse(ObservableList list)
反转列表中的顺序列表中仅发送 一个更改通知。static void
FXCollections. rotate(ObservableList list, int distance)
按距离旋转列表。static void
FXCollections. shuffle(ObservableList<?> list)
随机播放可观察列表中的所有元素。static void
FXCollections. shuffle(ObservableList list, Random rnd)
随机播放可观察列表中的所有元素。static <T extends Comparable<? super T>>
voidFXCollections. sort(ObservableList<T> list)
对提供的可观察列表进行排序。static <T> void
FXCollections. sort(ObservableList<T> list, Comparator<? super T> c)
使用c比较器对提供的可观察列表进行排序。static <E> ObservableList<E>
FXCollections. synchronizedObservableList(ObservableList<E> list)
在提供的可观察列表之上创建并返回一个同步的包装器。static <E> ObservableList<E>
FXCollections. unmodifiableObservableList(ObservableList<E> list)
在提供的可观察列表之上创建并返回不可修改的包装器列表。Constructors in javafx.collections with parameters of type ObservableList Constructor 描述 Change(ObservableList<E> list)
构造一个新的列表更改。 -
Uses of ObservableList in javafx.collections.transformation
Classes in javafx.collections.transformation that implement ObservableList Modifier and Type Class 描述 class
FilteredList<E>
包装一个ObservableList并使用提供的谓词过滤其内容。class
SortedList<E>
包装一个ObservableList并对其内容进行排序。class
TransformationList<E,F>
所有列表的基类,用于以更改(转换)包装的列表的元素,顺序,大小或结构的方式包装另一个列表。Methods in javafx.collections.transformation that return ObservableList Modifier and Type 方法 描述 ObservableList<? extends F>
TransformationList. getSource()
在此转换列表的构造函数中指定的源列表。Methods in javafx.collections.transformation with parameters of type ObservableList Modifier and Type 方法 描述 int
TransformationList. getSourceIndexFor(ObservableList<?> list, int index)
将此列表元素的索引映射到所提供的list
的索引。boolean
TransformationList. isInTransformationChain(ObservableList<?> list)
检查提供的列表是否在此TransformationList
下的链中。Constructors in javafx.collections.transformation with parameters of type ObservableList Constructor 描述 FilteredList(ObservableList<E> source)
在源列表周围构造一个新的FilteredList包装器。FilteredList(ObservableList<E> source, Predicate<? super E> predicate)
在源列表周围构造一个新的FilteredList包装器。SortedList(ObservableList<? extends E> source)
在源列表周围构造一个新的无序SortedList包装器。SortedList(ObservableList<? extends E> source, Comparator<? super E> comparator)
创建一个围绕源列表的新SortedList。TransformationList(ObservableList<? extends F> source)
创建一个围绕源列表的新的Transformation列表。 -
Uses of ObservableList in javafx.css
Methods in javafx.css that return ObservableList Modifier and Type 方法 描述 static ObservableList<CssParser.ParseError>
CssParser. errorsProperty()
ObservableList<Declaration>
Rule. getDeclarations()
此方法是支持可能希望从规则添加声明或从规则中删除声明的工具。ObservableList<Selector>
Rule. getSelectors()
此方法是支持可能希望从Rule添加选择器或从Rule中删除选择器的工具。ObservableList<String>
Styleable. getStyleClass()
可用于逻辑组合节点的字符串标识符列表,专门用于外部样式引擎。 -
Uses of ObservableList in javafx.scene
Methods in javafx.scene that return ObservableList Modifier and Type 方法 描述 ObservableList<Node>
Group. getChildren()
获取此Group
的孩子列表。protected ObservableList<Node>
Parent. getChildren()
获取此Parent
的孩子列表。ObservableList<Node>
Parent. getChildrenUnmodifiable()
获取此Parent
的子项列表作为只读列表。ObservableList<Node>
LightBase. getScope()
获取指定此Light的分层范围的节点列表。ObservableList<String>
Node. getStyleClass()
ObservableList<String>
Parent. getStylesheets()
获取链接到此父项内容使用的样式表的字符串URL的可观察列表。ObservableList<String>
Scene. getStylesheets()
获取链接到与场景内容一起使用的样式表的字符串URL的可观察列表。ObservableList<Transform>
Node. getTransforms()
定义的ObservableListTransform
个对象被应用到这个Node
。Methods in javafx.scene that return types with arguments of type ObservableList Modifier and Type 方法 描述 ObservableMap<KeyCombination,ObservableList<Mnemonic>>
Scene. getMnemonics()
获取Scene
的助记符列表。 -
Uses of ObservableList in javafx.scene.chart
Methods in javafx.scene.chart that return ObservableList Modifier and Type 方法 描述 ObservableList<String>
CategoryAxis. getCategories()
返回在该轴上绘制的类别中的ObservableList
。protected ObservableList<Node>
Chart. getChartChildren()
图表中所有内容的可修改和可观察的列表。ObservableList<PieChart.Data>
PieChart. getData()
获取属性数据的值。ObservableList<XYChart.Series<X,Y>>
XYChart. getData()
获取属性数据的值。ObservableList<XYChart.Data<X,Y>>
XYChart.Series. getData()
获取属性数据的值。protected ObservableList<Node>
XYChart. getPlotChildren()
情节中所有内容的可修改和可观察的列表。ObservableList<Axis.TickMark<T>>
Axis. getTickMarks()
不可修改的可观察的刻度表列表,每个TickMark在此轴上直接表示一个刻度。Methods in javafx.scene.chart that return types with arguments of type ObservableList Modifier and Type 方法 描述 ObjectProperty<ObservableList<PieChart.Data>>
PieChart. dataProperty()
PieCharts数据ObjectProperty<ObservableList<XYChart.Series<X,Y>>>
XYChart. dataProperty()
XYCharts数据ObjectProperty<ObservableList<XYChart.Data<X,Y>>>
XYChart.Series. dataProperty()
ObservableList组成本系列的数据项Methods in javafx.scene.chart with parameters of type ObservableList Modifier and Type 方法 描述 void
CategoryAxis. setCategories(ObservableList<String> value)
在此轴上绘制的类别的有序列表。void
PieChart. setData(ObservableList<PieChart.Data> value)
设置属性数据的值。void
XYChart.Series. setData(ObservableList<XYChart.Data<X,Y>> value)
设置属性数据的值。void
XYChart. setData(ObservableList<XYChart.Series<X,Y>> value)
设置属性数据的值。Constructors in javafx.scene.chart with parameters of type ObservableList Constructor 描述 AreaChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构建新的区域图BarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
用给定的轴和数据构造一个新的BarChart。BarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data, double categoryGap)
用给定的轴和数据构造一个新的BarChart。BubbleChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构建新的BubbleChart。CategoryAxis(ObservableList<String> categories)
创建具有给定类别的类别轴。LineChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构造一个新的LineChart。PieChart(ObservableList<PieChart.Data> data)
用给定的数据构建一个新的PieChartScatterChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构造新的ScatterChart。Series(String name, ObservableList<XYChart.Data<X,Y>> data)
构造一个命名的系列,并使用给定的ObservableList
数据填充它。Series(ObservableList<XYChart.Data<X,Y>> data)
构造一个系列,并使用给定的ObservableList
数据填充它。StackedAreaChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构建新的区域图。StackedBarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)
使用给定的轴和数据构造一个新的StackedBarChart。StackedBarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data, double categoryGap)
使用给定的轴和数据构造一个新的StackedBarChart。 -
Uses of ObservableList in javafx.scene.control
Methods in javafx.scene.control that return ObservableList Modifier and Type 方法 描述 ObservableList<Node>
ButtonBar. getButtons()
在此ObservableList内放置按钮将指示ButtonBar根据其指定的ButtonBar.ButtonData
相对于彼此定位 。ObservableList<ButtonType>
Alert. getButtonTypes()
返回此警报实例中当前设置的所有ButtonType
个实例中的ObservableList
。ObservableList<ButtonType>
DialogPane. getButtonTypes()
用于对话框按钮栏区域的按钮类型的可观察列表(通过DialogPane.createButtonBar()
方法创建)。ObservableList<Node>
SkinBase. getChildren()
返回皮肤的孩子。ObservableList<TreeItem<T>>
TreeItem. getChildren()
这个TreeItem的孩子。ObservableList<TableColumn<S,?>>
TableColumn. getColumns()
这样可以支持嵌套列,这对于将相关数据组合在一起是有用的。abstract ObservableList<? extends TableColumnBase<S,?>>
TableColumnBase. getColumns()
这样可以支持嵌套列,这对于将相关数据组合在一起是有用的。ObservableList<TableColumn<S,?>>
TableView. getColumns()
TableColumns是TableView的一部分。ObservableList<TreeTableColumn<S,?>>
TreeTableColumn. getColumns()
这样可以支持嵌套列,这对于将相关数据组合在一起是有用的。ObservableList<TreeTableColumn<S,?>>
TreeTableView. getColumns()
作为TableView的一部分的TreeTableColumns。ObservableList<Color>
ColorPicker. getCustomColors()
获取用户添加到调色板的自定义颜色列表。ObservableList<SplitPane.Divider>
SplitPane. getDividers()
返回此SplitPane中所有分隔符的不可修改列表。ObservableList<T>
ChoiceBox. getItems()
获取属性项的值。ObservableList<T>
ChoiceDialog. getItems()
返回将显示给用户的所有项目的列表。ObservableList<T>
ComboBox. getItems()
获取属性项的值。ObservableList<MenuItem>
ContextMenu. getItems()
上下文菜单中的菜单项。ObservableList<T>
ListView. getItems()
返回一个ObservableList
,其中包含当前显示给用户的项目。ObservableList<MenuItem>
Menu. getItems()
在此菜单中显示的项目。ObservableList<MenuItem>
MenuButton. getItems()
在此按钮菜单中显示的项目。ObservableList<T>
SpinnerValueFactory.ListSpinnerValueFactory. getItems()
返回一个ObservableList
,其中包含当前用户可以迭代的项目。ObservableList<Node>
SplitPane. getItems()
返回一个ObservableList,可用于修改SplitPane的内容。ObservableList<S>
TableView. getItems()
获取属性项的值。ObservableList<Node>
ToolBar. getItems()
ToolBar
包含的项目。ObservableList<Menu>
MenuBar. getMenus()
在MenuBar中显示的菜单。ObservableList<TitledPane>
Accordion. getPanes()
获得此手风琴中的TitledPane
的列表。ObservableList<CharSequence>
TextArea. getParagraphs()
返回返回文本区域内容的字符序列的不可修改列表。abstract ObservableList<TablePosition>
TableView.TableViewSelectionModel. getSelectedCells()
一个只读ObservableList,表示此TableView中当前选定的单元格。abstract ObservableList<TreeTablePosition<S,?>>
TreeTableView.TreeTableViewSelectionModel. getSelectedCells()
一个只读ObservableList,表示此TreeTableView中当前选定的单元格。abstract ObservableList<Integer>
MultipleSelectionModel. getSelectedIndices()
返回所有选定索引的 只读 ObservableList。abstract ObservableList<T>
MultipleSelectionModel. getSelectedItems()
返回所有选定项目的 只读 ObservableList。ObservableList<TableColumn<S,?>>
TableView. getSortOrder()
sortOrder列表定义TableColumn
实例的排序顺序。ObservableList<TreeTableColumn<S,?>>
TreeTableView. getSortOrder()
sortOrder列表定义TreeTableColumn
实例进行排序的顺序。ObservableList<String>
MenuItem. getStyleClass()
*公开API * *ObservableList<String>
PopupControl. getStyleClass()
返回构成此PopupControl的styleClass的String标识符列表。ObservableList<String>
Tab. getStyleClass()
可用于逻辑组合节点的字符串标识符列表,专门用于外部样式引擎。ObservableList<String>
TableColumnBase. getStyleClass()
可用于逻辑组合节点的字符串标识符列表,专门用于外部样式引擎。ObservableList<Tab>
TabPane. getTabs()
要在此TabPane中显示的选项卡。ObservableList<Toggle>
ToggleGroup. getToggles()
ToggleGroup中的切换列表。ObservableList<TableColumn<S,?>>
TableView. getVisibleLeafColumns()
返回一个不可修改的列表,其中包含当前可见的叶子列。ObservableList<TreeTableColumn<S,?>>
TreeTableView. getVisibleLeafColumns()
返回一个不可修改的列表,其中包含当前可见的叶子列。Methods in javafx.scene.control that return types with arguments of type ObservableList Modifier and Type 方法 描述 ObjectProperty<ObservableList<T>>
ChoiceBox. itemsProperty()
要在选框中显示的项目。ObjectProperty<ObservableList<T>>
ComboBox. itemsProperty()
在ComboBox弹出窗口中显示的项目列表。ObjectProperty<ObservableList<T>>
ListView. itemsProperty()
ListView的底层数据模型。ObjectProperty<ObservableList<T>>
SpinnerValueFactory.ListSpinnerValueFactory. itemsProperty()
ListView的底层数据模型。ObjectProperty<ObservableList<S>>
TableView. itemsProperty()
TableView的基础数据模型。Methods in javafx.scene.control with parameters of type ObservableList Modifier and Type 方法 描述 void
ChoiceBox. setItems(ObservableList<T> value)
设置属性项的值。void
ComboBox. setItems(ObservableList<T> value)
设置属性项的值。void
ListView. setItems(ObservableList<T> value)
设置ListView的底层数据模型。void
SpinnerValueFactory.ListSpinnerValueFactory. setItems(ObservableList<T> value)
设置ListSpinnerValueFactory的底层数据模型。void
TableView. setItems(ObservableList<S> value)
设置属性项的值。Constructors in javafx.scene.control with parameters of type ObservableList Constructor 描述 ChoiceBox(ObservableList<T> items)
使用给定的项目创建一个新的ChoiceBox。ComboBox(ObservableList<T> items)
使用提供的项目列表和默认的selection model
创建一个默认的ComboBox实例。ListSpinnerValueFactory(ObservableList<T> items)
创建一个ListSpinnerValueFactory的新实例,其中给定的列表用作列表以逐步完成。ListView(ObservableList<T> items)
创建一个默认的ListView,它将堆叠从垂直提供的ObservableList
检索的内容。Spinner(ObservableList<T> items)
创建一个微调实例与value factory
设置为实例SpinnerValueFactory.ListSpinnerValueFactory
。TableView(ObservableList<S> items)
使用ObservableList项中提供的内容创建TableView。 -
Uses of ObservableList in javafx.scene.control.cell
Methods in javafx.scene.control.cell that return ObservableList Modifier and Type 方法 描述 ObservableList<T>
ChoiceBoxListCell. getItems()
返回要显示在ChoiceBox中的项目。ObservableList<T>
ChoiceBoxTableCell. getItems()
返回要显示在ChoiceBox中的项目。ObservableList<T>
ChoiceBoxTreeCell. getItems()
返回要显示在ChoiceBox中的项目。ObservableList<T>
ChoiceBoxTreeTableCell. getItems()
返回要显示在ChoiceBox中的项目。ObservableList<T>
ComboBoxListCell. getItems()
返回要显示在ChoiceBox中的项目。ObservableList<T>
ComboBoxTableCell. getItems()
返回要显示在ComboBox中的项目。ObservableList<T>
ComboBoxTreeCell. getItems()
返回要显示在ComboBox中的项目。ObservableList<T>
ComboBoxTreeTableCell. getItems()
返回要显示在ComboBox中的项目。Methods in javafx.scene.control.cell with parameters of type ObservableList Modifier and Type 方法 描述 static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(ObservableList<T> items)
创建ComboBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)
创建ComboBox单元格工厂用于ListView
控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
ChoiceBoxTableCell. forTableColumn(ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于TableColumn
控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
ChoiceBoxTableCell. forTableColumn(StringConverter<T> converter, ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于TableColumn
控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
ComboBoxTableCell. forTableColumn(ObservableList<T> items)
创建ComboBox单元格工厂用于TableColumn
控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
ComboBoxTableCell. forTableColumn(StringConverter<T> converter, ObservableList<T> items)
创建ComboBox单元格工厂,用于TableColumn
控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
ChoiceBoxTreeTableCell. forTreeTableColumn(ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于TreeTableColumn
控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
ChoiceBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, ObservableList<T> items)
创建一个ChoiceBox单元格工厂用于TreeTableColumn
控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
ComboBoxTreeTableCell. forTreeTableColumn(ObservableList<T> items)
创建ComboBox单元格工厂,用于TreeTableColumn
控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
ComboBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, ObservableList<T> items)
创建ComboBox单元格工厂用于TreeTableColumn
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ChoiceBoxTreeCell. forTreeView(ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ChoiceBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)
创建一个ChoiceBox单元格工厂,用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ComboBoxTreeCell. forTreeView(ObservableList<T> items)
创建ComboBox单元格工厂,用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ComboBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)
创建ComboBox单元格工厂用于TreeView
控件。 -
Uses of ObservableList in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return ObservableList Modifier and Type 方法 描述 ObservableList<TableColumnHeader>
NestedTableColumnHeader. getColumnHeaders()
返回这个NestedTableColumnHeader的子代的TableColumnHeader
实例的不可修改列表。protected ObservableList<TableColumn<T,?>>
TableRowSkin. getVisibleLeafColumns()
返回一个不可修改的列表,其中包含当前可见的叶子列。protected abstract ObservableList<? extends TableColumnBase>
TableRowSkinBase. getVisibleLeafColumns()
返回一个不可修改的列表,其中包含当前可见的叶子列。protected ObservableList<TreeTableColumn<T,?>>
TreeTableRowSkin. getVisibleLeafColumns()
返回一个不可修改的列表,其中包含当前可见的叶子列。 -
Uses of ObservableList in javafx.scene.input
Methods in javafx.scene.input that return ObservableList Modifier and Type 方法 描述 ObservableList<InputMethodTextRun>
InputMethodEvent. getComposed()
获取组合下的文本。 -
Uses of ObservableList in javafx.scene.layout
Methods in javafx.scene.layout that return ObservableList Modifier and Type 方法 描述 ObservableList<Node>
Pane. getChildren()
ObservableList<ColumnConstraints>
GridPane. getColumnConstraints()
返回列约束列表。ObservableList<RowConstraints>
GridPane. getRowConstraints()
返回行约束列表。 -
Uses of ObservableList in javafx.scene.media
Methods in javafx.scene.media that return ObservableList Modifier and Type 方法 描述 ObservableList<EqualizerBand>
AudioEqualizer. getBands()
ObservableList包含EqualizerBand
个元素。ObservableList<Track>
Media. getTracks()
检索此媒体源中包含的曲目。 -
Uses of ObservableList in javafx.scene.shape
Methods in javafx.scene.shape that return ObservableList Modifier and Type 方法 描述 ObservableList<PathElement>
Path. getElements()
获取此路径的路径元素的可观察列表。ObservableList<Double>
Polygon. getPoints()
获取Polygon
顶点的坐标。ObservableList<Double>
Polyline. getPoints()
获取PolyLine
段的坐标。ObservableList<Double>
Shape. getStrokeDashArray()
定义表示短划线段长度的数组。 -
Uses of ObservableList in javafx.scene.web
Methods in javafx.scene.web that return ObservableList Modifier and Type 方法 描述 protected ObservableList<Node>
WebView. getChildren()
ObservableList<WebHistory.Entry>
WebHistory. getEntries()
返回历史记录中所有条目的不可修改的可观察列表。 -
Uses of ObservableList in javafx.stage
Methods in javafx.stage that return ObservableList Modifier and Type 方法 描述 ObservableList<Node>
Popup. getContent()
Node
的ObservableList将在此Popup
上呈现。ObservableList<FileChooser.ExtensionFilter>
FileChooser. getExtensionFilters()
获取显示文件对话框中使用的扩展过滤器。ObservableList<Image>
Stage. getIcons()
获取窗口装饰中使用的图标图像和最小化时。static ObservableList<Screen>
Screen. getScreens()
当前可用的可观察列表Screens
。static ObservableList<Screen>
Screen. getScreensForRectangle(double x, double y, double width, double height)
返回与所提供的矩形相交的ObservableList为Screens
。static ObservableList<Screen>
Screen. getScreensForRectangle(Rectangle2D r)
返回与所提供的矩形相交的ObservableList为Screens
。static ObservableList<Window>
Window. getWindows()
Returns a list containing a reference to the currently showing JavaFX windows.
-