Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.collections |
Contains the essential JavaFX collections and collection utilities
|
javafx.fxml |
Contains classes for loading an object hierarchy from markup.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
javafx.scene.control.cell |
The
javafx.scene.control.cell package is where all cell-related
classes are located, other than the core classes such as
Cell , IndexedCell ,
ListCell , TreeCell ,
and TableCell . |
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
Modifier and Type | Method and Description |
---|---|
static <E> ObservableList<E> |
FXCollections.observableArrayList(Callback<E,Observable[]> extractor)
Creates a new empty observable list backed by an arraylist.
|
static <E> ObservableList<E> |
FXCollections.observableList(java.util.List<E> list,
Callback<E,Observable[]> extractor)
Constructs an ObservableList that is backed by the specified list.
|
Modifier and Type | Field and Description |
---|---|
private Callback<java.lang.Class<?>,java.lang.Object> |
FXMLLoader.controllerFactory |
Modifier and Type | Method and Description |
---|---|
Callback<java.lang.Class<?>,java.lang.Object> |
FXMLLoader.getControllerFactory()
Returns the controller factory used by this serializer.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
FXMLLoader.load(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory)
Loads an object hierarchy from a FXML document.
|
static <T> T |
FXMLLoader.load(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory,
java.nio.charset.Charset charset)
Loads an object hierarchy from a FXML document.
|
void |
FXMLLoader.setControllerFactory(Callback<java.lang.Class<?>,java.lang.Object> controllerFactory)
Sets the controller factory used by this serializer.
|
Constructor and Description |
---|
FXMLLoader(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory)
Creates a new FXMLLoader instance.
|
FXMLLoader(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory,
java.nio.charset.Charset charset)
Creates a new FXMLLoader instance.
|
FXMLLoader(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory,
java.nio.charset.Charset charset,
java.util.LinkedList<FXMLLoader> loaders)
Creates a new FXMLLoader instance.
|
Modifier and Type | Method and Description |
---|---|
void |
Node.snapshot(Callback<SnapshotResult,java.lang.Void> callback,
SnapshotParameters params,
WritableImage image)
Takes a snapshot of this node at the next frame and calls the
specified callback method when the image is ready.
|
void |
Scene.snapshot(Callback<SnapshotResult,java.lang.Void> callback,
WritableImage image)
Takes a snapshot of this scene at the next frame and calls the
specified callback method when the image is ready.
|
Modifier and Type | Field and Description |
---|---|
private Callback<TreeView<T>,TreeCell<T>> |
TreeViewBuilder.cellFactory |
private Callback<TableColumn<S,T>,TableCell<S,T>> |
TableColumnBuilder.cellFactory |
private Callback<ListView<T>,ListCell<T>> |
ListViewBuilder.cellFactory |
private Callback<ListView<T>,ListCell<T>> |
ComboBoxBuilder.cellFactory |
private Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> |
TableColumnBuilder.cellValueFactory |
private Callback<TableView.ResizeFeatures,java.lang.Boolean> |
TableViewBuilder.columnResizePolicy |
static Callback<TableView.ResizeFeatures,java.lang.Boolean> |
TableView.CONSTRAINED_RESIZE_POLICY
Simple policy that ensures the width of all visible leaf columns in
this table sum up to equal the width of the table itself.
|
static Callback<TableColumn<?,?>,TableCell<?,?>> |
TableColumn.DEFAULT_CELL_FACTORY
If no cellFactory is specified on a TableColumn instance, then this one
will be used by default.
|
private Callback<java.lang.Integer,Node> |
PaginationBuilder.pageFactory |
private Callback<TableView<S>,TableRow<S>> |
TableViewBuilder.rowFactory |
static Callback<TableView.ResizeFeatures,java.lang.Boolean> |
TableView.UNCONSTRAINED_RESIZE_POLICY
Very simple resize policy that just resizes the specified column by the
provided delta and shifts all other columns (to the right of the given column)
further to the right (when the delta is positive) or to the left (when the
delta is negative).
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<TreeView<T>,TreeCell<T>>> |
TreeView.cellFactory
*
Properties *
*
|
private ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactory
The cell factory for all cells in this column.
|
private ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ListView.cellFactory |
private ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ComboBox.cellFactory
Providing a custom cell factory allows for complete customization of the
rendering of items in the ComboBox.
|
private ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> |
TableColumn.cellValueFactory
The cell value factory needs to be set to specify how to populate all
cells within a single TableColumn.
|
private ObjectProperty<Callback<TableView.ResizeFeatures,java.lang.Boolean>> |
TableView.columnResizePolicy |
private ObjectProperty<Callback<java.lang.Integer,Node>> |
Pagination.pageFactory |
private ObjectProperty<Callback<TableView<S>,TableRow<S>>> |
TableView.rowFactory |
Modifier and Type | Method and Description |
---|---|
Callback<TreeView<T>,TreeCell<T>> |
TreeView.getCellFactory()
Returns the cell factory that will be used for creating TreeCells,
which are used to represent items in the TreeView, or null if no custom
cell factory has been set.
|
Callback<TableColumn<S,T>,TableCell<S,T>> |
TableColumn.getCellFactory()
Gets the value of the property cellFactory.
|
Callback<ListView<T>,ListCell<T>> |
ListView.getCellFactory()
Returns the current cell factory.
|
Callback<ListView<T>,ListCell<T>> |
ComboBox.getCellFactory()
Gets the value of the property cellFactory.
|
Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> |
TableColumn.getCellValueFactory()
Gets the value of the property cellValueFactory.
|
Callback<TableView.ResizeFeatures,java.lang.Boolean> |
TableView.getColumnResizePolicy()
Gets the value of the property columnResizePolicy.
|
Callback<java.lang.Integer,Node> |
Pagination.getPageFactory()
Returns the page factory callback function.
|
Callback<TableView<S>,TableRow<S>> |
TableView.getRowFactory()
Gets the value of the property rowFactory.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<TreeView<T>,TreeCell<T>>> |
TreeView.cellFactoryProperty()
Represents the cell factory that will be used for creating TreeCells,
which are used to represent items in the TreeView.
|
ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactoryProperty()
The cell factory for all cells in this column.
|
ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ListView.cellFactoryProperty()
Setting a custom cell factory has the effect of deferring all cell
creation, allowing for total customization of the cell.
|
ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ComboBox.cellFactoryProperty()
Providing a custom cell factory allows for complete customization of the
rendering of items in the ComboBox.
|
ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> |
TableColumn.cellValueFactoryProperty()
The cell value factory needs to be set to specify how to populate all
cells within a single TableColumn.
|
ObjectProperty<Callback<TableView.ResizeFeatures,java.lang.Boolean>> |
TableView.columnResizePolicyProperty()
This is the function called when the user completes a column-resize
operation.
|
ObjectProperty<Callback<java.lang.Integer,Node>> |
Pagination.pageFactoryProperty()
The pageFactory callback function that is called when a page has been
selected by the application or the user.
|
ObjectProperty<Callback<TableView<S>,TableRow<S>>> |
TableView.rowFactoryProperty()
A function which produces a TableRow.
|
Modifier and Type | Method and Description |
---|---|
B |
ListViewBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
ComboBoxBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
TableColumnBuilder.cellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
TreeViewBuilder.cellFactory(Callback<TreeView<T>,TreeCell<T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
TableColumnBuilder.cellValueFactory(Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> x)
Set the value of the
cellValueFactory property for the instance constructed by this builder. |
B |
TableViewBuilder.columnResizePolicy(Callback<TableView.ResizeFeatures,java.lang.Boolean> x)
Set the value of the
columnResizePolicy property for the instance constructed by this builder. |
B |
PaginationBuilder.pageFactory(Callback<java.lang.Integer,Node> x)
Set the value of the
pageFactory property for the instance constructed by this builder. |
B |
TableViewBuilder.rowFactory(Callback<TableView<S>,TableRow<S>> x)
Set the value of the
rowFactory property for the instance constructed by this builder. |
void |
ListView.setCellFactory(Callback<ListView<T>,ListCell<T>> value)
Sets a new cell factory to use in the ListView.
|
void |
ComboBox.setCellFactory(Callback<ListView<T>,ListCell<T>> value)
Sets the value of the property cellFactory.
|
void |
TableColumn.setCellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> value)
Sets the value of the property cellFactory.
|
void |
TreeView.setCellFactory(Callback<TreeView<T>,TreeCell<T>> value)
Sets the cell factory that will be used for creating TreeCells,
which are used to represent items in the
TreeView.
|
void |
TableColumn.setCellValueFactory(Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> value)
Sets the value of the property cellValueFactory.
|
void |
TableView.setColumnResizePolicy(Callback<TableView.ResizeFeatures,java.lang.Boolean> callback)
Sets the value of the property columnResizePolicy.
|
void |
Pagination.setPageFactory(Callback<java.lang.Integer,Node> value)
Sets the page factory callback function.
|
void |
TableView.setRowFactory(Callback<TableView<S>,TableRow<S>> value)
Sets the value of the property rowFactory.
|
Modifier and Type | Class and Description |
---|---|
class |
MapValueFactory<T>
A convenience implementation of the Callback interface, designed specifically
for use within the
TableColumn
cell value factory . |
class |
PropertyValueFactory<S,T>
A convenience implementation of the Callback interface, designed specifically
for use within the
TableColumn
cell value factory . |
Modifier and Type | Field and Description |
---|---|
private Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> |
CheckBoxTreeCellBuilder.selectedStateCallback |
private Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> |
CheckBoxTableCellBuilder.selectedStateCallback |
private Callback<T,ObservableValue<java.lang.Boolean>> |
CheckBoxListCellBuilder.selectedStateCallback |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>>> |
CheckBoxTreeCell.selectedStateCallback |
private ObjectProperty<Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>>> |
CheckBoxTableCell.selectedStateCallback |
private ObjectProperty<Callback<T,ObservableValue<java.lang.Boolean>>> |
CheckBoxListCell.selectedStateCallback |
Modifier and Type | Method and Description |
---|---|
static Callback<ListView<java.lang.String>,ListCell<java.lang.String>> |
TextFieldListCell.forListView()
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when ListView.edit(int) is called. |
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in ListView controls.
|
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in ListView controls.
|
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
TextFieldListCell.forListView(StringConverter<T> converter)
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when ListView.edit(int) is called. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(StringConverter<T> converter,
T... items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(StringConverter<T> converter,
T... items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(T... items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(T... items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <S> Callback<TableColumn<S,java.lang.String>,TableCell<S,java.lang.String>> |
TextFieldTableCell.forTableColumn()
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TableView.edit(int, javafx.scene.control.TableColumn) is called. |
static <S> Callback<TableColumn<S,java.lang.Double>,TableCell<S,java.lang.Double>> |
ProgressBarTableCell.forTableColumn()
Provides a
ProgressBar that allows easy visualisation of a Number
value as it proceeds from 0.0 to 1.0. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
boolean showLabel)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(ObservableList<T> items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
TextFieldTableCell.forTableColumn(StringConverter<T> converter)
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TableView.edit(int, javafx.scene.control.TableColumn) is called. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(StringConverter<T> converter,
T... items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(StringConverter<T> converter,
T... items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(T... items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(T... items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S> Callback<TableColumn<S,java.lang.Boolean>,TableCell<S,java.lang.Boolean>> |
CheckBoxTableCell.forTableColumn(TableColumn<S,java.lang.Boolean> column)
Creates a cell factory for use in a
TableColumn cell factory. |
static Callback<TreeView<java.lang.String>,TreeCell<java.lang.String>> |
TextFieldTreeCell.forTreeView()
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TreeView.edit(javafx.scene.control.TreeItem) is called. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView()
Creates a cell factory for use in a TreeView control, although there is a
major assumption when used in a TreeView: this cell factory assumes that
the TreeView root, and all children are instances of
CheckBoxTreeItem , rather than the default TreeItem class
that is used normally. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a TreeView control.
|
static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter)
Creates a cell factory for use in a TreeView control.
|
private static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter,
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getIndeterminateProperty)
Creates a cell factory for use in a TreeView control.
|
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
TextFieldTreeCell.forTreeView(StringConverter<T> converter)
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TreeView.edit(javafx.scene.control.TreeItem) is called. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(StringConverter<T> converter,
T... items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(StringConverter<T> converter,
T... items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(T... items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(T... items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> |
CheckBoxTreeCell.getSelectedStateCallback()
Returns the
Callback that is bound to by the CheckBox shown on screen. |
Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> |
CheckBoxTableCell.getSelectedStateCallback()
Returns the
Callback that is bound to by the CheckBox shown on screen. |
Callback<T,ObservableValue<java.lang.Boolean>> |
CheckBoxListCell.getSelectedStateCallback()
Returns the
Callback that is bound to by the CheckBox shown on screen. |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>>> |
CheckBoxTreeCell.selectedStateCallbackProperty()
Property representing the
Callback that is bound to by the
CheckBox shown on screen. |
ObjectProperty<Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>>> |
CheckBoxTableCell.selectedStateCallbackProperty()
Property representing the
Callback that is bound to by the
CheckBox shown on screen. |
ObjectProperty<Callback<T,ObservableValue<java.lang.Boolean>>> |
CheckBoxListCell.selectedStateCallbackProperty()
Property representing the
Callback that is bound to by the
CheckBox shown on screen. |
Modifier and Type | Method and Description |
---|---|
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in ListView controls.
|
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in ListView controls.
|
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
boolean showLabel)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in a
TableColumn cell factory. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a TreeView control.
|
static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter)
Creates a cell factory for use in a TreeView control.
|
private static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter,
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getIndeterminateProperty)
Creates a cell factory for use in a TreeView control.
|
private static <T> Callback<TreeView<T>,TreeCell<T>> |
CheckBoxTreeCell.forTreeView(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter,
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getIndeterminateProperty)
Creates a cell factory for use in a TreeView control.
|
B |
CheckBoxTableCellBuilder.selectedStateCallback(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> x)
Set the value of the
selectedStateCallback property for the instance constructed by this builder. |
B |
CheckBoxListCellBuilder.selectedStateCallback(Callback<T,ObservableValue<java.lang.Boolean>> x)
Set the value of the
selectedStateCallback property for the instance constructed by this builder. |
B |
CheckBoxTreeCellBuilder.selectedStateCallback(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> x)
Set the value of the
selectedStateCallback property for the instance constructed by this builder. |
void |
CheckBoxTableCell.setSelectedStateCallback(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> value)
Sets the
Callback that is bound to by the CheckBox shown on screen. |
void |
CheckBoxListCell.setSelectedStateCallback(Callback<T,ObservableValue<java.lang.Boolean>> value)
Sets the
Callback that is bound to by the CheckBox shown on screen. |
void |
CheckBoxTreeCell.setSelectedStateCallback(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> value)
Sets the
Callback that is bound to by the CheckBox shown on screen. |
Constructor and Description |
---|
CheckBoxListCell(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a default CheckBoxListCell.
|
CheckBoxListCell(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a CheckBoxListCell with a custom string converter.
|
CheckBoxTableCell(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a default CheckBoxTableCell with a custom
Callback to
retrieve an ObservableValue for a given cell index. |
CheckBoxTableCell(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a CheckBoxTableCell with a custom string converter.
|
CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a
CheckBoxTreeCell for use in a TreeView control via a
cell factory. |
CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter)
Creates a
CheckBoxTreeCell for use in a TreeView control via a
cell factory. |
CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter,
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getIndeterminateProperty) |
CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<TreeItem<T>> converter,
Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> getIndeterminateProperty) |
Modifier and Type | Field and Description |
---|---|
private Callback<java.lang.String,java.lang.Boolean> |
WebEngineBuilder.confirmHandler |
private Callback<PopupFeatures,WebEngine> |
WebEngineBuilder.createPopupHandler |
private Callback<java.lang.String,java.lang.Void> |
WebEngine.DebuggerImpl.messageCallback |
private Callback<PromptData,java.lang.String> |
WebEngineBuilder.promptHandler |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<java.lang.String,java.lang.Boolean>> |
WebEngine.confirmHandler |
private ObjectProperty<Callback<PopupFeatures,WebEngine>> |
WebEngine.createPopupHandler |
private ObjectProperty<Callback<PromptData,java.lang.String>> |
WebEngine.promptHandler |
Modifier and Type | Method and Description |
---|---|
Callback<java.lang.String,java.lang.Boolean> |
WebEngine.getConfirmHandler()
Returns the JavaScript
confirm handler. |
Callback<PopupFeatures,WebEngine> |
WebEngine.getCreatePopupHandler()
Returns the JavaScript popup handler.
|
Callback<java.lang.String,java.lang.Void> |
WebEngine.DebuggerImpl.getMessageCallback() |
Callback<PromptData,java.lang.String> |
WebEngine.getPromptHandler()
Returns the JavaScript
prompt handler. |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<java.lang.String,java.lang.Boolean>> |
WebEngine.confirmHandlerProperty()
JavaScript
confirm handler property. |
ObjectProperty<Callback<PopupFeatures,WebEngine>> |
WebEngine.createPopupHandlerProperty()
JavaScript popup handler property.
|
ObjectProperty<Callback<PromptData,java.lang.String>> |
WebEngine.promptHandlerProperty()
JavaScript
prompt handler property. |
Modifier and Type | Method and Description |
---|---|
WebViewBuilder |
WebViewBuilder.confirmHandler(Callback<java.lang.String,java.lang.Boolean> value)
Sets the
confirmHandler
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.confirmHandler(Callback<java.lang.String,java.lang.Boolean> value)
Sets the
confirmHandler
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.createPopupHandler(Callback<PopupFeatures,WebEngine> value)
Sets the
createPopupHandler
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.createPopupHandler(Callback<PopupFeatures,WebEngine> value)
Sets the
createPopupHandler
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.promptHandler(Callback<PromptData,java.lang.String> value)
Sets the
promptHandler
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.promptHandler(Callback<PromptData,java.lang.String> value)
Sets the
promptHandler
property for the instance constructed by this builder. |
void |
WebEngine.setConfirmHandler(Callback<java.lang.String,java.lang.Boolean> handler)
Sets the JavaScript
confirm handler. |
void |
WebEngine.setCreatePopupHandler(Callback<PopupFeatures,WebEngine> handler)
Sets the JavaScript popup handler.
|
void |
WebEngine.DebuggerImpl.setMessageCallback(Callback<java.lang.String,java.lang.Void> callback) |
void |
WebEngine.setPromptHandler(Callback<PromptData,java.lang.String> handler)
Sets the JavaScript
prompt handler. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to