Uses of Class
javafx.scene.control.Labeled
Package
Description
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.
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
.The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
-
Uses of Labeled in javafx.scene.control
Modifier and TypeClassDescriptionclass
A simple button control.class
Base class for button-like UI Controls, including Hyperlinks, Buttons, ToggleButtons, CheckBoxes, and RadioButtons.class
Cell<T>
class
A tri-state selection Control typically skinned as a box with a checkmark or tick mark when checked.class
DateCell is used byDatePicker
to render the individual grid cells in the calendar month.class
An HTML like label which can be a graphic and/or text which responds to rollovers and clicks.class
IndexedCell<T>
An implementation ofCell
which contains an index property which maps into the data model underlying the visualization.class
Label is a non-editable text control.class
ListCell<T>
class
MenuButton is a button which, when clicked or pressed, will show aContextMenu
.class
RadioButtons create a series of items where only one item can be selected.class
The SplitMenuButton, like theMenuButton
is closely associated with the concept of selecting aMenuItem
from a menu.class
TableCell<S,
T> Represents a single row/column intersection in aTableView
.class
TableRow<T>
TableRow is anIndexedCell
, but rarely needs to be used by developers creating TableView instances.class
A TitledPane is a panel with a title that can be opened and closed.class
AToggleButton
is a specialized control which has the ability to be selected.class
TreeCell<T>
class
TreeTableCell<S,
T> Represents a single row/column intersection in aTreeTableView
.class
TreeTableRow<T>
TreeTableRow is anIndexedCell
, but rarely needs to be used by developers creating TreeTableView instances. -
Uses of Labeled in javafx.scene.control.cell
Modifier and TypeClassDescriptionclass
class
CheckBoxTableCell<S,
T> class
class
A class containing aTreeTableCell
implementation that draws aCheckBox
node inside the cell, optionally with a label to indicate what the checkbox represents.class
class
ChoiceBoxTableCell<S,
T> class
class
A class containing aTreeTableCell
implementation that draws aChoiceBox
node inside the cell.class
class
ComboBoxTableCell<S,
T> class
class
A class containing aTreeTableCell
implementation that draws aComboBox
node inside the cell.class
A class containing aTableCell
implementation that draws aProgressBar
node inside the cell.class
A class containing aTreeTableCell
implementation that draws aProgressBar
node inside the cell.class
class
TextFieldTableCell<S,
T> class
class
-
Uses of Labeled in javafx.scene.control.skin
Modifier and TypeClassDescriptionclass
LabeledSkinBase<C extends Labeled>
Default skin implementation for controls extendsLabeled
.