Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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 . |
Modifier and Type | Class and Description |
---|---|
class |
IndexedCell<T>
An implementation of
Cell which contains an index property which maps
into the data model underlying the visualization. |
class |
ListCell<T>
|
class |
TableCell<S,T>
Represents a single row/column intersection in a
TableView . |
class |
TableRow<T>
TableRow is an
IndexedCell , but
rarely needs to be used by developers creating TableView instances. |
class |
TreeCell<T>
|
Modifier and Type | Method and Description |
---|---|
Cell<T> |
CellBuilder.build()
Make an instance of
Cell based on the properties set on this builder. |
Modifier and Type | Method and Description |
---|---|
void |
CellBuilder.applyTo(Cell<T> x) |
Modifier and Type | Class and Description |
---|---|
class |
CheckBoxListCell<T>
|
class |
CheckBoxTableCell<S,T>
|
class |
CheckBoxTreeCell<T>
|
class |
ChoiceBoxListCell<T>
|
class |
ChoiceBoxTableCell<S,T>
|
class |
ChoiceBoxTreeCell<T>
|
class |
ComboBoxListCell<T>
|
class |
ComboBoxTableCell<S,T>
|
class |
ComboBoxTreeCell<T>
|
class |
ProgressBarTableCell<S>
A class containing a
TableCell implementation that draws a
ProgressBar node inside the cell. |
class |
TextFieldListCell<T>
|
class |
TextFieldTableCell<S,T>
|
class |
TextFieldTreeCell<T>
|
Modifier and Type | Method and Description |
---|---|
(package private) static <T> void |
CellUtils.cancelEdit(Cell<T> cell,
StringConverter<T> converter) |
(package private) static <T> ChoiceBox<T> |
CellUtils.createChoiceBox(Cell<T> cell,
ObservableList<T> items) |
(package private) static <T> ComboBox<T> |
CellUtils.createComboBox(Cell<T> cell,
ObservableList<T> items) |
private static <T> TextField |
CellUtils.createTextField(Cell<T> cell,
StringConverter<T> converter) |
private static <T> java.lang.String |
CellUtils.getItemText(Cell<T> cell,
StringConverter<T> converter) |
(package private) static <T> void |
CellUtils.startEdit(Cell<T> cell,
TextField textField,
StringConverter<T> converter) |
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
ChoiceBox<T> choiceBox,
StringConverter<T> converter)
*
ChoiceBox convenience *
*
|
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
ComboBox<T> comboBox,
StringConverter<T> converter)
*
TextField convenience *
*
|
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
TextField textField,
StringConverter<T> converter)
*
TextField convenience *
*
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to