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.
|
Modifier and Type | Field and Description |
---|---|
private TitledPane |
TitledPaneBehavior.titledPane |
Modifier and Type | Field and Description |
---|---|
private ListChangeListener<TitledPane> |
AccordionBehavior.AccordionFocusModel.panesListener |
Modifier and Type | Method and Description |
---|---|
protected TitledPane |
AccordionBehavior.AccordionFocusModel.getModelItem(int row) |
Constructor and Description |
---|
TitledPaneBehavior(TitledPane pane) |
Modifier and Type | Field and Description |
---|---|
private TitledPane |
AccordionSkin.expandedPane |
private TitledPane |
AccordionSkin.firstTitledPane |
private TitledPane |
AccordionSkin.previousPane |
Modifier and Type | Field and Description |
---|---|
private java.util.Map<TitledPane,ChangeListener<java.lang.Boolean>> |
AccordionSkin.listeners |
Modifier and Type | Method and Description |
---|---|
private ChangeListener<java.lang.Boolean> |
AccordionSkin.expandedPropertyListener(TitledPane tp) |
Modifier and Type | Method and Description |
---|---|
private void |
AccordionSkin.initTitledPaneListeners(java.util.List<? extends TitledPane> list) |
private void |
AccordionSkin.removeTitledPaneListeners(java.util.List<? extends TitledPane> list) |
Constructor and Description |
---|
TitledPaneSkin(TitledPane titledPane) |
Modifier and Type | Field and Description |
---|---|
private TitledPane |
AccordionBuilder.expandedPane
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private static CssMetaData<TitledPane,java.lang.Boolean> |
TitledPane.StyleableProperties.ANIMATED |
private static CssMetaData<TitledPane,java.lang.Boolean> |
TitledPane.StyleableProperties.COLLAPSIBLE |
private ObjectProperty<TitledPane> |
Accordion.expandedPane
*
Properties *
*
|
private ObservableList<TitledPane> |
Accordion.panes
*
Instance Variables *
*
|
private java.util.Collection<? extends TitledPane> |
AccordionBuilder.panes
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
TitledPane |
TitledPaneBuilder.build()
Deprecated.
Make an instance of
TitledPane based on the properties set on this builder. |
TitledPane |
Accordion.getExpandedPane()
Gets the expanded TitledPane in the Accordion.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<TitledPane> |
Accordion.expandedPaneProperty()
The expanded TitledPane in the Accordion.
|
ObservableList<TitledPane> |
Accordion.getPanes()
Gets the list of
TitledPane in this Accordion. |
Modifier and Type | Method and Description |
---|---|
void |
TitledPaneBuilder.applyTo(TitledPane x)
Deprecated.
|
B |
AccordionBuilder.expandedPane(TitledPane x)
Deprecated.
Set the value of the
expandedPane property for the instance constructed by this builder. |
B |
AccordionBuilder.panes(TitledPane... x)
Deprecated.
Add the given items to the List of items in the
panes property for the instance constructed by this builder. |
void |
Accordion.setExpandedPane(TitledPane value)
The expanded
TitledPane that is currently visible. |
Modifier and Type | Method and Description |
---|---|
B |
AccordionBuilder.panes(java.util.Collection<? extends TitledPane> x)
Deprecated.
Add the given items to the List of items in the
panes property for the instance constructed by this builder. |
Constructor and Description |
---|
Accordion(TitledPane... titledPanes)
Creates a new Accordion with the given TitledPanes showing within it.
|