Package | Description |
---|---|
com.sun.javafx.collections | |
com.sun.javafx.scene.control | |
com.sun.javafx.scene.control.behavior | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.scene.web | |
com.sun.scenario | |
com.sun.scenario.animation | |
javafx.collections |
Contains the essential JavaFX collections and collection utilities
|
javafx.concurrent |
Provides the set of classes for javafx.task.
|
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.layout |
Provides classes to support user interface layout.
|
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
Modifier and Type | Field and Description |
---|---|
private Callback<E,Observable[]> |
ElementObserver.extractor |
private Callback<E,InvalidationListener> |
ElementObserver.listenerGenerator |
Constructor and Description |
---|
ElementObservableListDecorator(ObservableList<E> decorated,
Callback<E,Observable[]> extractor) |
ElementObserver(Callback<E,Observable[]> extractor,
Callback<E,InvalidationListener> listenerGenerator,
ObservableListBase<E> list) |
ElementObserver(Callback<E,Observable[]> extractor,
Callback<E,InvalidationListener> listenerGenerator,
ObservableListBase<E> list) |
ObservableListWrapper(java.util.List<E> list,
Callback<E,Observable[]> extractor) |
ObservableSequentialListWrapper(java.util.List<E> list,
Callback<E,Observable[]> extractor) |
Modifier and Type | Field and Description |
---|---|
private Callback<java.lang.String,java.lang.Void> |
MultiplePropertyChangeListenerHandler.propertyChangedHandler |
Constructor and Description |
---|
MultiplePropertyChangeListenerHandler(Callback<java.lang.String,java.lang.Void> propertyChangedHandler) |
Modifier and Type | Field and Description |
---|---|
private Callback<java.lang.Boolean,java.lang.Integer> |
TreeViewBehavior.onScrollPageDown |
private Callback<java.lang.Boolean,java.lang.Integer> |
TableViewBehaviorBase.onScrollPageDown |
private Callback<java.lang.Boolean,java.lang.Integer> |
ListViewBehavior.onScrollPageDown |
private Callback<java.lang.Boolean,java.lang.Integer> |
TreeViewBehavior.onScrollPageUp |
private Callback<java.lang.Boolean,java.lang.Integer> |
TableViewBehaviorBase.onScrollPageUp |
private Callback<java.lang.Boolean,java.lang.Integer> |
ListViewBehavior.onScrollPageUp |
Modifier and Type | Method and Description |
---|---|
(package private) static <T> void |
TreeViewBehavior.expandRow(MultipleSelectionModel<TreeItem<T>> sm,
Callback<TreeItem<T>,java.lang.Integer> getIndex) |
void |
TreeViewBehavior.setOnScrollPageDown(Callback<java.lang.Boolean,java.lang.Integer> c) |
void |
TableViewBehaviorBase.setOnScrollPageDown(Callback<java.lang.Boolean,java.lang.Integer> c) |
void |
ListViewBehavior.setOnScrollPageDown(Callback<java.lang.Boolean,java.lang.Integer> c) |
void |
TreeViewBehavior.setOnScrollPageUp(Callback<java.lang.Boolean,java.lang.Integer> c) |
void |
TableViewBehaviorBase.setOnScrollPageUp(Callback<java.lang.Boolean,java.lang.Integer> c) |
void |
ListViewBehavior.setOnScrollPageUp(Callback<java.lang.Boolean,java.lang.Integer> c) |
Modifier and Type | Field and Description |
---|---|
private Callback<ListView<T>,ListCell<T>> |
ComboBoxListViewSkin.cellFactory |
private Callback<VirtualFlow,T> |
VirtualFlow.createCell
Callback which is invoked whenever the VirtualFlow needs a new
IndexedCell.
|
private Callback<C,I> |
TableViewSkinBase.rowFactory |
Modifier and Type | Method and Description |
---|---|
Callback<VirtualFlow,T> |
VirtualFlow.getCreateCell() |
private Callback<ListView<T>,ListCell<T>> |
ComboBoxListViewSkin.getDefaultCellFactory() |
Modifier and Type | Method and Description |
---|---|
protected ObjectProperty<Callback<ResizeFeaturesBase,java.lang.Boolean>> |
TreeTableViewSkin.columnResizePolicyProperty() |
protected ObjectProperty<Callback<ResizeFeaturesBase,java.lang.Boolean>> |
TableViewSkin.columnResizePolicyProperty() |
protected abstract ObjectProperty<Callback<ResizeFeaturesBase,java.lang.Boolean>> |
TableViewSkinBase.columnResizePolicyProperty() |
protected ObjectProperty<Callback<TreeTableView<S>,TreeTableRow<S>>> |
TreeTableViewSkin.rowFactoryProperty() |
protected ObjectProperty<Callback<TableView<T>,TableRow<T>>> |
TableViewSkin.rowFactoryProperty() |
protected abstract ObjectProperty<Callback<C,I>> |
TableViewSkinBase.rowFactoryProperty() |
Modifier and Type | Method and Description |
---|---|
void |
VirtualFlow.setCreateCell(Callback<VirtualFlow,T> cc) |
Modifier and Type | Method and Description |
---|---|
Callback<java.lang.String,java.lang.Void> |
Debugger.getMessageCallback()
Returns the message callback object registered with the debugger.
|
Modifier and Type | Method and Description |
---|---|
void |
Debugger.setMessageCallback(Callback<java.lang.String,java.lang.Void> callback)
Registers a message callback object with the debugger.
|
Modifier and Type | Field and Description |
---|---|
private java.util.concurrent.CopyOnWriteArrayList<Callback<java.lang.String,java.lang.Void>> |
Settings.listeners |
Modifier and Type | Method and Description |
---|---|
static void |
Settings.addPropertyChangeListener(Callback<java.lang.String,java.lang.Void> pcl)
Add a PropertyChangeListener for the specified setting
Note that the PropertyChangeEvent will contain old and new values as they
would be returned from get(), meaning they may come from the System
Properties.
|
private void |
Settings.addPropertyChangeListenerImpl(Callback<java.lang.String,java.lang.Void> pcl) |
static void |
Settings.removePropertyChangeListener(Callback<java.lang.String,java.lang.Void> pcl)
Remove the specified PropertyChangeListener.
|
private void |
Settings.removePropertyChangeListenerImpl(Callback<java.lang.String,java.lang.Void> pcl) |
Modifier and Type | Field and Description |
---|---|
private static Callback<java.lang.String,java.lang.Void> |
AbstractMasterTimer.pcl |
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 |
---|---|
static Callback<ScheduledService<?>,Duration> |
ScheduledService.EXPONENTIAL_BACKOFF_STRATEGY
A Callback implementation for the
backoffStrategy property which
will exponentially backoff the period between re-executions in the case of
a failure. |
static Callback<ScheduledService<?>,Duration> |
ScheduledService.LINEAR_BACKOFF_STRATEGY
A Callback implementation for the
backoffStrategy property which
will linearly backoff the period between re-executions in the case of
a failure. |
static Callback<ScheduledService<?>,Duration> |
ScheduledService.LOGARITHMIC_BACKOFF_STRATEGY
A Callback implementation for the
backoffStrategy property which
will logarithmically backoff the period between re-executions in the case of
a failure. |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<ScheduledService<?>,Duration>> |
ScheduledService.backoffStrategy
Computes the amount of time to add to the period on each failure.
|
Modifier and Type | Method and Description |
---|---|
Callback<ScheduledService<?>,Duration> |
ScheduledService.getBackoffStrategy() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<ScheduledService<?>,Duration>> |
ScheduledService.backoffStrategyProperty() |
Modifier and Type | Method and Description |
---|---|
void |
ScheduledService.setBackoffStrategy(Callback<ScheduledService<?>,Duration> value) |
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.
|
private static <T> T |
FXMLLoader.loadImpl(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory,
java.nio.charset.Charset charset,
java.lang.Class<?> callerClass) |
private static <T> T |
FXMLLoader.loadImpl(java.net.URL location,
java.util.ResourceBundle resources,
BuilderFactory builderFactory,
Callback<java.lang.Class<?>,java.lang.Object> controllerFactory,
java.lang.Class<?> callerClass) |
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<ListView<T>,ListCell<T>> |
ListViewBuilder.cellFactory
Deprecated.
|
private Callback<TreeView<T>,TreeCell<T>> |
TreeViewBuilder.cellFactory
Deprecated.
|
private Callback<ListView<T>,ListCell<T>> |
ComboBoxBuilder.cellFactory
Deprecated.
|
private Callback<TableColumn<S,T>,TableCell<S,T>> |
TableColumnBuilder.cellFactory
Deprecated.
|
private Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> |
TableColumnBuilder.cellValueFactory
Deprecated.
|
private Callback<TableView.ResizeFeatures,java.lang.Boolean> |
TableViewBuilder.columnResizePolicy
Deprecated.
|
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<TreeTableView.ResizeFeatures,java.lang.Boolean> |
TreeTableView.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<TreeTableColumn<?,?>,TreeTableCell<?,?>> |
TreeTableColumn.DEFAULT_CELL_FACTORY
If no cellFactory is specified on a TreeTableColumn instance, then this one
will be used by default.
|
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.
|
static Callback<TableView,java.lang.Boolean> |
TableView.DEFAULT_SORT_POLICY
The default
sort policy that this TableView
will use if no other policy is specified. |
static Callback<TreeTableView,java.lang.Boolean> |
TreeTableView.DEFAULT_SORT_POLICY
The default
sort policy that this TreeTableView
will use if no other policy is specified. |
private Callback<java.lang.Integer,Node> |
PaginationBuilder.pageFactory
Deprecated.
|
private Callback<TableView<S>,TableRow<S>> |
TableViewBuilder.rowFactory
Deprecated.
|
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).
|
static Callback<TreeTableView.ResizeFeatures,java.lang.Boolean> |
TreeTableView.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<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<TreeTableColumn<S,T>,TreeTableCell<S,T>>> |
TreeTableColumn.cellFactory
The cell factory for all cells in this column.
|
private ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactory
The cell factory for all cells in this column.
|
private ObjectProperty<Callback<TreeTableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> |
TreeTableColumn.cellValueFactory
The cell value factory needs to be set to specify how to populate all
cells within a single TreeTableColumn.
|
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<TreeTableView.ResizeFeatures,java.lang.Boolean>> |
TreeTableView.columnResizePolicy |
private ObjectProperty<Callback<DatePicker,DateCell>> |
DatePicker.dayCellFactory
A custom cell factory can be provided to customize individual
day cells in the DatePicker popup.
|
private ObjectProperty<Callback<java.lang.Integer,Node>> |
Pagination.pageFactory |
private ObjectProperty<Callback<ButtonType,R>> |
Dialog.resultConverterProperty |
private ObjectProperty<Callback<TableView<S>,TableRow<S>>> |
TableView.rowFactory |
private ObjectProperty<Callback<TreeTableView<S>,TreeTableRow<S>>> |
TreeTableView.rowFactory |
private ObjectProperty<Callback<TableView<S>,java.lang.Boolean>> |
TableView.sortPolicy
The sort policy specifies how sorting in this TableView should be performed.
|
private ObjectProperty<Callback<TreeTableView<S>,java.lang.Boolean>> |
TreeTableView.sortPolicy
The sort policy specifies how sorting in this TreeTableView should be performed.
|
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<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() |
ObjectProperty<Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>> |
TreeTableColumn.cellFactoryProperty() |
ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactoryProperty() |
ObjectProperty<Callback<TreeTableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> |
TreeTableColumn.cellValueFactoryProperty() |
ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> |
TableColumn.cellValueFactoryProperty() |
ObjectProperty<Callback<TableView.ResizeFeatures,java.lang.Boolean>> |
TableView.columnResizePolicyProperty()
This is the function called when the user completes a column-resize
operation.
|
ObjectProperty<Callback<TreeTableView.ResizeFeatures,java.lang.Boolean>> |
TreeTableView.columnResizePolicyProperty()
This is the function called when the user completes a column-resize
operation.
|
ObjectProperty<Callback<DatePicker,DateCell>> |
DatePicker.dayCellFactoryProperty() |
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<ButtonType,R>> |
Dialog.resultConverterProperty()
API to convert the
ButtonType that the user clicked on into a
result that can be returned via the result
property. |
ObjectProperty<Callback<TableView<S>,TableRow<S>>> |
TableView.rowFactoryProperty()
A function which produces a TableRow.
|
ObjectProperty<Callback<TreeTableView<S>,TreeTableRow<S>>> |
TreeTableView.rowFactoryProperty()
A function which produces a TreeTableRow.
|
ObjectProperty<Callback<TableView<S>,java.lang.Boolean>> |
TableView.sortPolicyProperty() |
ObjectProperty<Callback<TreeTableView<S>,java.lang.Boolean>> |
TreeTableView.sortPolicyProperty() |
Modifier and Type | Method and Description |
---|---|
B |
ListViewBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Deprecated.
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
ComboBoxBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Deprecated.
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)
Deprecated.
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
TreeViewBuilder.cellFactory(Callback<TreeView<T>,TreeCell<T>> x)
Deprecated.
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)
Deprecated.
Set the value of the
cellValueFactory property for the instance constructed by this builder. |
B |
TableViewBuilder.columnResizePolicy(Callback<TableView.ResizeFeatures,java.lang.Boolean> x)
Deprecated.
Set the value of the
columnResizePolicy property for the instance constructed by this builder. |
B |
PaginationBuilder.pageFactory(Callback<java.lang.Integer,Node> x)
Deprecated.
Set the value of the
pageFactory property for the instance constructed by this builder. |
B |
TableViewBuilder.rowFactory(Callback<TableView<S>,TableRow<S>> x)
Deprecated.
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) |
void |
TableColumn.setCellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> value) |
void |
TreeTableColumn.setCellFactory(Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> value) |
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) |
void |
TreeTableColumn.setCellValueFactory(Callback<TreeTableColumn.CellDataFeatures<S,T>,ObservableValue<T>> value) |
void |
TableView.setColumnResizePolicy(Callback<TableView.ResizeFeatures,java.lang.Boolean> callback) |
void |
TreeTableView.setColumnResizePolicy(Callback<TreeTableView.ResizeFeatures,java.lang.Boolean> callback) |
void |
DatePicker.setDayCellFactory(Callback<DatePicker,DateCell> value) |
void |
Pagination.setPageFactory(Callback<java.lang.Integer,Node> value)
Sets the page factory callback function.
|
void |
Dialog.setResultConverter(Callback<ButtonType,R> value) |
void |
TableView.setRowFactory(Callback<TableView<S>,TableRow<S>> value) |
void |
TreeTableView.setRowFactory(Callback<TreeTableView<S>,TreeTableRow<S>> value) |
void |
TableView.setSortPolicy(Callback<TableView<S>,java.lang.Boolean> callback) |
void |
TreeTableView.setSortPolicy(Callback<TreeTableView<S>,java.lang.Boolean> callback) |
(package private) void |
MultipleSelectionModelBase.shiftSelection(int position,
int shift,
Callback<MultipleSelectionModelBase.ShiftParams,java.lang.Void> callback) |
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 . |
class |
TreeItemPropertyValueFactory<S,T>
A convenience implementation of the Callback interface, designed specifically
for use within the
TreeTableColumn
cell value factory . |
Modifier and Type | Field and Description |
---|---|
private Callback<T,ObservableValue<java.lang.Boolean>> |
CheckBoxListCellBuilder.selectedStateCallback
Deprecated.
|
private Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>> |
CheckBoxTreeCellBuilder.selectedStateCallback
Deprecated.
|
private Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> |
CheckBoxTableCellBuilder.selectedStateCallback
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>>> |
CheckBoxTreeTableCell.selectedStateCallback |
private ObjectProperty<Callback<T,ObservableValue<java.lang.Boolean>>> |
CheckBoxListCell.selectedStateCallback |
private ObjectProperty<Callback<TreeItem<T>,ObservableValue<java.lang.Boolean>>> |
CheckBoxTreeCell.selectedStateCallback |
private ObjectProperty<Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>>> |
CheckBoxTableCell.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>> |
ChoiceBoxListCell.forListView(ObservableList<T> items)
Creates a ChoiceBox 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>> |
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>> |
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,
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,
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(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 <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 <S> Callback<TreeTableColumn<S,java.lang.String>,TreeTableCell<S,java.lang.String>> |
TextFieldTreeTableCell.forTreeTableColumn()
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TreeTableView.edit(int, javafx.scene.control.TreeTableColumn) is called. |
static <S> Callback<TreeTableColumn<S,java.lang.Double>,TreeTableCell<S,java.lang.Double>> |
ProgressBarTreeTableCell.forTreeTableColumn()
Provides a
ProgressBar that allows easy visualisation of a Number
value as it proceeds from 0.0 to 1.0. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a
TreeTableColumn cell factory. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
boolean showLabel)
Creates a cell factory for use in a
TreeTableColumn cell factory. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in a
TreeTableColumn cell factory. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ChoiceBoxTreeTableCell.forTreeTableColumn(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ComboBoxTreeTableCell.forTreeTableColumn(ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
TextFieldTreeTableCell.forTreeTableColumn(StringConverter<T> converter)
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TreeTableView.edit(int, javafx.scene.control.TreeTableColumn) is called. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ChoiceBoxTreeTableCell.forTreeTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ComboBoxTreeTableCell.forTreeTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ChoiceBoxTreeTableCell.forTreeTableColumn(StringConverter<T> converter,
T... items)
Creates a ChoiceBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ComboBoxTreeTableCell.forTreeTableColumn(StringConverter<T> converter,
T... items)
Creates a ComboBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ChoiceBoxTreeTableCell.forTreeTableColumn(T... items)
Creates a ChoiceBox cell factory for use in
TreeTableColumn controls. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
ComboBoxTreeTableCell.forTreeTableColumn(T... items)
Creates a ComboBox cell factory for use in
TreeTableColumn controls. |
static <S> Callback<TreeTableColumn<S,java.lang.Boolean>,TreeTableCell<S,java.lang.Boolean>> |
CheckBoxTreeTableCell.forTreeTableColumn(TreeTableColumn<S,java.lang.Boolean> column)
Creates a cell factory for use in a
TreeTableColumn 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.
|
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<java.lang.Integer,ObservableValue<java.lang.Boolean>> |
CheckBoxTreeTableCell.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. |
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. |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>>> |
CheckBoxTreeTableCell.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. |
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. |
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 <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a
TreeTableColumn cell factory. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
boolean showLabel)
Creates a cell factory for use in a
TreeTableColumn cell factory. |
static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>> |
CheckBoxTreeTableCell.forTreeTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in a
TreeTableColumn 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.
|
B |
CheckBoxTableCellBuilder.selectedStateCallback(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> x)
Deprecated.
Set the value of the
selectedStateCallback property for the instance constructed by this builder. |
B |
CheckBoxListCellBuilder.selectedStateCallback(Callback<T,ObservableValue<java.lang.Boolean>> x)
Deprecated.
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)
Deprecated.
Set the value of the
selectedStateCallback property for the instance constructed by this builder. |
void |
CheckBoxTreeTableCell.setSelectedStateCallback(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> value)
Sets the
Callback that is bound to by the CheckBox shown on screen. |
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) |
CheckBoxTreeTableCell(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a default CheckBoxTreeTableCell with a custom
Callback to
retrieve an ObservableValue for a given cell index. |
CheckBoxTreeTableCell(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a CheckBoxTreeTableCell with a custom string converter.
|
Modifier and Type | Field and Description |
---|---|
private static Callback<Node,Insets> |
FlowPane.marginAccessor |
private static Callback<Node,Insets> |
GridPane.marginAccessor |
private static Callback<Node,Insets> |
HBox.marginAccessor |
private static Callback<Node,Insets> |
VBox.marginAccessor |
private static Callback<Node,Insets> |
StackPane.marginAccessor |
private static Callback<Node,Insets> |
TilePane.marginAccessor |
Modifier and Type | Method and Description |
---|---|
(package private) double |
Region.computeMaxMinAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childWidths,
VPos valignment) |
(package private) double |
Region.computeMaxMinAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> margins,
VPos valignment) |
(package private) double |
Region.computeMaxMinAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> margins,
VPos valignment,
double width) |
(package private) double |
Region.computeMaxMinAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> margins) |
(package private) double |
Region.computeMaxMinAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childHeights,
boolean fillHeight) |
(package private) double |
Region.computeMaxMinAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> margins,
double height,
boolean fillHeight) |
(package private) double |
Region.computeMaxPrefAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childWidths,
VPos valignment) |
(package private) double |
Region.computeMaxPrefAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> margins,
double width,
VPos valignment) |
(package private) double |
Region.computeMaxPrefAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> margins,
VPos valignment) |
(package private) double |
Region.computeMaxPrefAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> margins) |
(package private) double |
Region.computeMaxPrefAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childHeights,
boolean fillHeight) |
(package private) double |
Region.computeMaxPrefAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> margins,
double height,
boolean fillHeight) |
(package private) double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
boolean fillHeight) |
(package private) static double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
boolean fillHeight,
boolean snapToPixel) |
(package private) double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
boolean fillHeight,
double minComplement) |
(package private) static double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
boolean fillHeight,
double minComplement,
boolean snapToPixel) |
(package private) double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
java.util.function.Function<java.lang.Integer,java.lang.Boolean> fillHeight,
double minComplement) |
(package private) static double |
Region.getAreaBaselineOffset(java.util.List<Node> children,
Callback<Node,Insets> margins,
java.util.function.Function<java.lang.Integer,java.lang.Double> positionToWidth,
double areaHeight,
java.util.function.Function<java.lang.Integer,java.lang.Boolean> fillHeight,
double minComplement,
boolean snapToPixel)
Returns the baseline offset of provided children, with respect to the minimum complement, computed
by
Region.getMinBaselineComplement(java.util.List) from the same set of children. |
private double |
Region.getMaxAreaHeight(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childWidths,
VPos valignment,
boolean minimum) |
private double |
Region.getMaxAreaWidth(java.util.List<Node> children,
Callback<Node,Insets> childMargins,
double[] childHeights,
boolean fillHeight,
boolean minimum) |
Modifier and Type | Field and Description |
---|---|
private Callback<java.lang.String,java.lang.Boolean> |
WebEngineBuilder.confirmHandler
Deprecated.
|
private Callback<PopupFeatures,WebEngine> |
WebEngineBuilder.createPopupHandler
Deprecated.
|
private Callback<java.lang.String,java.lang.Void> |
WebEngine.DebuggerImpl.messageCallback |
private Callback<PromptData,java.lang.String> |
WebEngineBuilder.promptHandler
Deprecated.
|
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 |
---|---|
WebEngineBuilder |
WebEngineBuilder.confirmHandler(Callback<java.lang.String,java.lang.Boolean> value)
Deprecated.
Sets the
confirmHandler
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.confirmHandler(Callback<java.lang.String,java.lang.Boolean> value)
Deprecated.
Sets the
confirmHandler
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.createPopupHandler(Callback<PopupFeatures,WebEngine> value)
Deprecated.
Sets the
createPopupHandler
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.createPopupHandler(Callback<PopupFeatures,WebEngine> value)
Deprecated.
Sets the
createPopupHandler
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.promptHandler(Callback<PromptData,java.lang.String> value)
Deprecated.
Sets the
promptHandler
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.promptHandler(Callback<PromptData,java.lang.String> value)
Deprecated.
Sets the
promptHandler
property for the engine
property of 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. |