Package | Description |
---|---|
com.sun.javafx.scene.control.behavior | |
com.sun.javafx.scene.control.skin | |
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 |
CellBehaviorBase<T extends Cell>
Behaviors for standard cells types.
|
class |
TableRowBehaviorBase<T extends Cell> |
Modifier and Type | Class and Description |
---|---|
class |
CellSkinBase<C extends Cell,B extends BehaviorBase<C>>
A base skin implementation, specifically for ListCellSkin and TreeCellSkin.
|
Modifier and Type | Field and Description |
---|---|
private static CssMetaData<Cell<?>,java.lang.Number> |
CellSkinBase.StyleableProperties.CELL_SIZE |
Modifier and Type | Method and Description |
---|---|
private boolean |
VirtualFlow.doesCellContainFocus(Cell<?> c) |
protected double |
VirtualFlow.getCellBreadth(Cell cell)
Gets the breadth of a specific cell
|
Modifier and Type | Class and Description |
---|---|
class |
DateCell
DateCell is used by
DatePicker to render the individual
grid cells in the calendar month. |
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>
|
class |
TreeTableCell<S,T>
Represents a single row/column intersection in a
TreeTableView . |
class |
TreeTableRow<T>
TreeTableRow is an
IndexedCell , but
rarely needs to be used by developers creating TreeTableView instances. |
Modifier and Type | Method and Description |
---|---|
Cell<T> |
CellBuilder.build()
Deprecated.
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)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
CheckBoxListCell<T>
|
class |
CheckBoxTableCell<S,T>
|
class |
CheckBoxTreeCell<T>
|
class |
CheckBoxTreeTableCell<S,T>
A class containing a
TreeTableCell implementation that draws a
CheckBox node inside the cell, optionally with a label to indicate
what the checkbox represents. |
class |
ChoiceBoxListCell<T>
|
class |
ChoiceBoxTableCell<S,T>
|
class |
ChoiceBoxTreeCell<T>
|
class |
ChoiceBoxTreeTableCell<S,T>
A class containing a
TreeTableCell implementation that draws a
ChoiceBox node inside the cell. |
class |
ComboBoxListCell<T>
|
class |
ComboBoxTableCell<S,T>
|
class |
ComboBoxTreeCell<T>
|
class |
ComboBoxTreeTableCell<S,T>
A class containing a
TreeTableCell implementation that draws a
ComboBox node inside the cell. |
(package private) class |
DefaultTreeCell<T> |
class |
ProgressBarTableCell<S>
A class containing a
TableCell implementation that draws a
ProgressBar node inside the cell. |
class |
ProgressBarTreeTableCell<S>
A class containing a
TreeTableCell implementation that draws a
ProgressBar node inside the cell. |
class |
TextFieldListCell<T>
|
class |
TextFieldTableCell<S,T>
|
class |
TextFieldTreeCell<T>
|
class |
TextFieldTreeTableCell<S,T>
A class containing a
TableCell implementation that draws a
TextField node inside the cell. |
Modifier and Type | Method and Description |
---|---|
(package private) static <T> void |
CellUtils.cancelEdit(Cell<T> cell,
StringConverter<T> converter,
Node graphic) |
(package private) static <T> ChoiceBox<T> |
CellUtils.createChoiceBox(Cell<T> cell,
ObservableList<T> items,
ObjectProperty<StringConverter<T>> converter) |
(package private) static <T> ComboBox<T> |
CellUtils.createComboBox(Cell<T> cell,
ObservableList<T> items,
ObjectProperty<StringConverter<T>> converter) |
(package 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,
StringConverter<T> converter,
HBox hbox,
Node graphic,
TextField textField) |
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
ChoiceBox<T> choiceBox)
*
ChoiceBox convenience *
*
|
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
ComboBox<T> comboBox)
*
ComboBox convenience *
*
|
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
HBox hbox,
Node graphic,
ChoiceBox<T> choiceBox) |
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
HBox hbox,
Node graphic,
ComboBox<T> comboBox) |
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
HBox hbox,
Node graphic,
TextField textField) |
(package private) static <T> void |
CellUtils.updateItem(Cell<T> cell,
StringConverter<T> converter,
TextField textField)
*
TextField convenience *
*
|