- java.lang.Object
-
- javafx.scene.control.TableColumnBase<S,T>
-
- javafx.scene.control.TableColumn<S,T>
-
- Type Parameters:
S
- The type of the TableView generic type (i.e. S == TableView<S>)T
- The type of the content in all cells in this TableColumn.
- All Implemented Interfaces:
Styleable
,EventTarget
public class TableColumn<S,T> extends TableColumnBase<S,T> implements EventTarget
ATableView
is made up of a number of TableColumn instances. Each TableColumn in a table is responsible for displaying (and editing) the contents of that column. As well as being responsible for displaying and editing data for a single column, a TableColumn also contains the necessary properties to:- Be resized (using
minWidth
/prefWidth
/maxWidth
andwidth
properties) - Have its
visibility
toggled - Display
header text
- Display any
nested columns
it may contain - Have a
context menu
when the user right-clicks the column header area - Have the contents of the table be sorted (using
comparator
,sortable
andsortType
)
text
(what to show in the column header area), and the columncell value factory
(which is used to populate individual cells in the column). This can be achieved using some variation on the following code:ObservableList<Person> data = ... TableView<Person> tableView = new TableView<Person>(data); TableColumn<Person,String> firstNameCol = new TableColumn<Person,String>("First Name"); firstNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { // p.getValue() returns the Person instance for a particular TableView row return p.getValue().firstNameProperty(); } });
tableView.getColumns().add(firstNameCol);}p.getValue()
has a JavaFXObservableValue
that can simply be returned. The benefit of this is that the TableView will internally create bindings to ensure that, should the returnedObservableValue
change, the cell contents will be automatically refreshed.In situations where a TableColumn must interact with classes created before JavaFX, or that generally do not wish to use JavaFX apis for properties, it is possible to wrap the returned value in a
ReadOnlyObjectWrapper
instance. For example:firstNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { return new ReadOnlyObjectWrapper(p.getValue().getFirstName()); } });
PropertyValueFactory
. This class removes the need to write the code above, instead relying on reflection to look up a given property from a String. Refer to thePropertyValueFactory
class documentation for more information on how to use this with a TableColumn. Finally, for more detail on how to use TableColumn, there is further documentation in theTableView
class documentation.- Since:
- JavaFX 2.0
- See Also:
TableView
,TableCell
,TablePosition
-
-
Property Summary
Properties Type Property Description ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>>
cellFactory
The cell factory for all cells in this column.ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>>
cellValueFactory
The cell value factory needs to be set to specify how to populate all cells within a single TableColumn.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditCancel
This event handler will be fired when the user cancels editing a cell.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditCommit
This event handler will be fired when the user successfully commits their editing.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditStart
This event handler will be fired when the user successfully initiates editing.ObjectProperty<TableColumn.SortType>
sortType
Used to state whether this column, if it is part of a sort order (seeTableView.getSortOrder()
for more details), should be sorted in ascending or descending order.ReadOnlyObjectProperty<TableView<S>>
tableView
The TableView that this TableColumn belongs to.-
Properties declared in class javafx.scene.control.TableColumnBase
comparator, contextMenu, editable, graphic, id, maxWidth, minWidth, parentColumn, prefWidth, reorderable, resizable, sortable, sortNode, style, text, visible, width
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TableColumn.CellDataFeatures<S,T>
A support class used in TableColumn as a wrapper class to provide all necessary information for a particularCell
.static class
TableColumn.CellEditEvent<S,T>
An event that is fired when a user performs an edit on a table cell.static class
TableColumn.SortType
Enumeration that specifies the type of sorting being applied to a specific column.
-
Field Summary
Fields Modifier and Type Field Description static Callback<TableColumn<?,?>,TableCell<?,?>>
DEFAULT_CELL_FACTORY
If no cellFactory is specified on a TableColumn instance, then this one will be used by default.-
Fields declared in class javafx.scene.control.TableColumnBase
DEFAULT_COMPARATOR
-
-
Constructor Summary
Constructors Constructor Description TableColumn()
Creates a default TableColumn with default cell factory, comparator, and onEditCommit implementation.TableColumn(String text)
Creates a TableColumn with the text set to the provided string, with default cell factory, comparator, and onEditCommit implementation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>>
cellFactoryProperty()
The cell factory for all cells in this column.ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>>
cellValueFactoryProperty()
The cell value factory needs to be set to specify how to populate all cells within a single TableColumn.static <S,T> EventType<TableColumn.CellEditEvent<S,T>>
editAnyEvent()
Parent event for any TableColumn edit event.static <S,T> EventType<TableColumn.CellEditEvent<S,T>>
editCancelEvent()
Indicates that the editing has been canceled, meaning that no change should be made to the backing data source.static <S,T> EventType<TableColumn.CellEditEvent<S,T>>
editCommitEvent()
Indicates that the editing has been committed by the user, meaning that a change should be made to the backing data source to reflect the new data.static <S,T> EventType<TableColumn.CellEditEvent<S,T>>
editStartEvent()
Indicates that the user has performed some interaction to start an edit event, or alternatively theTableView.edit(int, javafx.scene.control.TableColumn)
method has been called.Callback<TableColumn<S,T>,TableCell<S,T>>
getCellFactory()
Gets the value of the property cellFactory.Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>
getCellValueFactory()
Gets the value of the property cellValueFactory.static List<CssMetaData<? extends Styleable,?>>
getClassCssMetaData()
List<CssMetaData<? extends Styleable,?>>
getCssMetaData()
The CssMetaData of this Styleable.EventHandler<TableColumn.CellEditEvent<S,T>>
getOnEditCancel()
Gets the value of the property onEditCancel.EventHandler<TableColumn.CellEditEvent<S,T>>
getOnEditCommit()
Gets the value of the property onEditCommit.EventHandler<TableColumn.CellEditEvent<S,T>>
getOnEditStart()
Gets the value of the property onEditStart.TableColumn.SortType
getSortType()
Gets the value of the property sortType.Styleable
getStyleableParent()
Return the parent of this Styleable, or null if there is no parent.TableView<S>
getTableView()
Gets the value of the property tableView.String
getTypeSelector()
The type of thisStyleable
that is to be used in selector matching.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditCommitProperty()
This event handler will be fired when the user successfully commits their editing.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.void
setCellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> value)
Sets the value of the property cellFactory.void
setCellValueFactory(Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> value)
Sets the value of the property cellValueFactory.void
setOnEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCancel.void
setOnEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCommit.void
setOnEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditStart.void
setSortType(TableColumn.SortType value)
Sets the value of the property sortType.ObjectProperty<TableColumn.SortType>
sortTypeProperty()
Used to state whether this column, if it is part of a sort order (seeTableView.getSortOrder()
for more details), should be sorted in ascending or descending order.ReadOnlyObjectProperty<TableView<S>>
tableViewProperty()
The TableView that this TableColumn belongs to.-
Methods declared in interface javafx.event.EventTarget
buildEventDispatchChain
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods declared in interface javafx.css.Styleable
getId, getPseudoClassStates, getStyle, getStyleableNode
-
Methods declared in class javafx.scene.control.TableColumnBase
addEventHandler, comparatorProperty, contextMenuProperty, editableProperty, getCellData, getCellData, getCellObservableValue, getCellObservableValue, getColumns, getComparator, getContextMenu, getGraphic, getMaxWidth, getMinWidth, getParentColumn, getPrefWidth, getProperties, getSortNode, getStyleClass, getText, getUserData, getWidth, graphicProperty, hasProperties, idProperty, isEditable, isReorderable, isResizable, isSortable, isVisible, maxWidthProperty, minWidthProperty, parentColumnProperty, prefWidthProperty, removeEventHandler, reorderableProperty, resizableProperty, setComparator, setContextMenu, setEditable, setGraphic, setId, setMaxWidth, setMinWidth, setPrefWidth, setReorderable, setResizable, setSortable, setSortNode, setStyle, setText, setUserData, setVisible, sortableProperty, sortNodeProperty, styleProperty, textProperty, visibleProperty, widthProperty
-
-
-
-
Property Detail
-
tableView
public final ReadOnlyObjectProperty<TableView<S>> tableViewProperty
The TableView that this TableColumn belongs to.- See Also:
getTableView()
-
cellValueFactory
public final ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> cellValueFactoryProperty
The cell value factory needs to be set to specify how to populate all cells within a single TableColumn. A cell value factory is aCallback
that provides aTableColumn.CellDataFeatures
instance, and expects anObservableValue
to be returned. The returned ObservableValue instance will be observed internally to allow for immediate updates to the value to be reflected on screen. An example of how to set a cell value factory is:
A common approach is to want to populate cells in a TableColumn using a single value from a Java bean. To support this common scenario, there is thelastNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { // p.getValue() returns the Person instance for a particular TableView row return p.getValue().lastNameProperty(); } }); }
PropertyValueFactory
class. Refer to this class for more information on how to use it, but briefly here is how the above use case could be simplified using the PropertyValueFactory class:lastNameCol.setCellValueFactory(new PropertyValueFactory<Person,String>("lastName"));
-
cellFactory
public final ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> cellFactoryProperty
The cell factory for all cells in this column. The cell factory is responsible for rendering the data contained within each TableCell for a single table column.By default TableColumn uses the
default cell factory
, but this can be replaced with a custom implementation, for example to show data in a different way or to support editing.There is a lot of documentation on creating custom cell factories elsewhere (seeCell
andTableView
for example).Finally, there are a number of pre-built cell factories available in the
javafx.scene.control.cell
package.- See Also:
getCellFactory()
,setCellFactory(Callback)
-
sortType
public final ObjectProperty<TableColumn.SortType> sortTypeProperty
Used to state whether this column, if it is part of a sort order (seeTableView.getSortOrder()
for more details), should be sorted in ascending or descending order. Simply toggling this property will result in the sort order changing in the TableView, assuming of course that this column is in the sortOrder ObservableList to begin with.- See Also:
getSortType()
,setSortType(TableColumn.SortType)
-
onEditStart
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditStartProperty
This event handler will be fired when the user successfully initiates editing.- See Also:
getOnEditStart()
,setOnEditStart(EventHandler)
-
onEditCommit
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditCommitProperty
This event handler will be fired when the user successfully commits their editing.- See Also:
getOnEditCommit()
,setOnEditCommit(EventHandler)
-
onEditCancel
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditCancelProperty
This event handler will be fired when the user cancels editing a cell.- See Also:
getOnEditCancel()
,setOnEditCancel(EventHandler)
-
-
Field Detail
-
DEFAULT_CELL_FACTORY
public static final Callback<TableColumn<?,?>,TableCell<?,?>> DEFAULT_CELL_FACTORY
If no cellFactory is specified on a TableColumn instance, then this one will be used by default. At present it simply renders the TableCell item property within thegraphic
property if theitem
is a Node, or it simply callstoString()
if it is not null, setting the resulting string inside thetext
property.
-
-
Constructor Detail
-
TableColumn
public TableColumn()
Creates a default TableColumn with default cell factory, comparator, and onEditCommit implementation.
-
TableColumn
public TableColumn(String text)
Creates a TableColumn with the text set to the provided string, with default cell factory, comparator, and onEditCommit implementation.- Parameters:
text
- The string to show when the TableColumn is placed within the TableView.
-
-
Method Detail
-
editAnyEvent
public static <S,T> EventType<TableColumn.CellEditEvent<S,T>> editAnyEvent()
Parent event for any TableColumn edit event.- Type Parameters:
S
- The type of the TableView generic typeT
- The type of the content in all cells in this TableColumn- Returns:
- The any TableColumn edit event
-
editStartEvent
public static <S,T> EventType<TableColumn.CellEditEvent<S,T>> editStartEvent()
Indicates that the user has performed some interaction to start an edit event, or alternatively theTableView.edit(int, javafx.scene.control.TableColumn)
method has been called.- Type Parameters:
S
- The type of the TableView generic typeT
- The type of the content in all cells in this TableColumn- Returns:
- The start an edit event
-
editCancelEvent
public static <S,T> EventType<TableColumn.CellEditEvent<S,T>> editCancelEvent()
Indicates that the editing has been canceled, meaning that no change should be made to the backing data source.- Type Parameters:
S
- The type of the TableView generic typeT
- The type of the content in all cells in this TableColumn- Returns:
- The cancel an edit event
-
editCommitEvent
public static <S,T> EventType<TableColumn.CellEditEvent<S,T>> editCommitEvent()
Indicates that the editing has been committed by the user, meaning that a change should be made to the backing data source to reflect the new data.- Type Parameters:
S
- The type of the TableView generic typeT
- The type of the content in all cells in this TableColumn- Returns:
- The commit an edit event
-
tableViewProperty
public final ReadOnlyObjectProperty<TableView<S>> tableViewProperty()
The TableView that this TableColumn belongs to.- See Also:
getTableView()
-
getTableView
public final TableView<S> getTableView()
Gets the value of the property tableView.- Property description:
- The TableView that this TableColumn belongs to.
-
setCellValueFactory
public final void setCellValueFactory(Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> value)
Sets the value of the property cellValueFactory.- Property description:
- The cell value factory needs to be set to specify how to populate all
cells within a single TableColumn. A cell value factory is a
Callback
that provides aTableColumn.CellDataFeatures
instance, and expects anObservableValue
to be returned. The returned ObservableValue instance will be observed internally to allow for immediate updates to the value to be reflected on screen. An example of how to set a cell value factory is:
A common approach is to want to populate cells in a TableColumn using a single value from a Java bean. To support this common scenario, there is thelastNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { // p.getValue() returns the Person instance for a particular TableView row return p.getValue().lastNameProperty(); } }); }
PropertyValueFactory
class. Refer to this class for more information on how to use it, but briefly here is how the above use case could be simplified using the PropertyValueFactory class:lastNameCol.setCellValueFactory(new PropertyValueFactory<Person,String>("lastName"));
-
getCellValueFactory
public final Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>> getCellValueFactory()
Gets the value of the property cellValueFactory.- Property description:
- The cell value factory needs to be set to specify how to populate all
cells within a single TableColumn. A cell value factory is a
Callback
that provides aTableColumn.CellDataFeatures
instance, and expects anObservableValue
to be returned. The returned ObservableValue instance will be observed internally to allow for immediate updates to the value to be reflected on screen. An example of how to set a cell value factory is:
A common approach is to want to populate cells in a TableColumn using a single value from a Java bean. To support this common scenario, there is thelastNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { // p.getValue() returns the Person instance for a particular TableView row return p.getValue().lastNameProperty(); } }); }
PropertyValueFactory
class. Refer to this class for more information on how to use it, but briefly here is how the above use case could be simplified using the PropertyValueFactory class:lastNameCol.setCellValueFactory(new PropertyValueFactory<Person,String>("lastName"));
-
cellValueFactoryProperty
public final ObjectProperty<Callback<TableColumn.CellDataFeatures<S,T>,ObservableValue<T>>> cellValueFactoryProperty()
The cell value factory needs to be set to specify how to populate all cells within a single TableColumn. A cell value factory is aCallback
that provides aTableColumn.CellDataFeatures
instance, and expects anObservableValue
to be returned. The returned ObservableValue instance will be observed internally to allow for immediate updates to the value to be reflected on screen. An example of how to set a cell value factory is:
A common approach is to want to populate cells in a TableColumn using a single value from a Java bean. To support this common scenario, there is thelastNameCol.setCellValueFactory(new Callback<CellDataFeatures<Person, String>, ObservableValue<String>>() { public ObservableValue<String> call(CellDataFeatures<Person, String> p) { // p.getValue() returns the Person instance for a particular TableView row return p.getValue().lastNameProperty(); } }); }
PropertyValueFactory
class. Refer to this class for more information on how to use it, but briefly here is how the above use case could be simplified using the PropertyValueFactory class:lastNameCol.setCellValueFactory(new PropertyValueFactory<Person,String>("lastName"));
-
setCellFactory
public final void setCellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> value)
Sets the value of the property cellFactory.- Property description:
- The cell factory for all cells in this column. The cell factory
is responsible for rendering the data contained within each TableCell for
a single table column.
By default TableColumn uses the
default cell factory
, but this can be replaced with a custom implementation, for example to show data in a different way or to support editing.There is a lot of documentation on creating custom cell factories elsewhere (seeCell
andTableView
for example).Finally, there are a number of pre-built cell factories available in the
javafx.scene.control.cell
package.
-
getCellFactory
public final Callback<TableColumn<S,T>,TableCell<S,T>> getCellFactory()
Gets the value of the property cellFactory.- Property description:
- The cell factory for all cells in this column. The cell factory
is responsible for rendering the data contained within each TableCell for
a single table column.
By default TableColumn uses the
default cell factory
, but this can be replaced with a custom implementation, for example to show data in a different way or to support editing.There is a lot of documentation on creating custom cell factories elsewhere (seeCell
andTableView
for example).Finally, there are a number of pre-built cell factories available in the
javafx.scene.control.cell
package.
-
cellFactoryProperty
public final ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> cellFactoryProperty()
The cell factory for all cells in this column. The cell factory is responsible for rendering the data contained within each TableCell for a single table column.By default TableColumn uses the
default cell factory
, but this can be replaced with a custom implementation, for example to show data in a different way or to support editing.There is a lot of documentation on creating custom cell factories elsewhere (seeCell
andTableView
for example).Finally, there are a number of pre-built cell factories available in the
javafx.scene.control.cell
package.- See Also:
getCellFactory()
,setCellFactory(Callback)
-
sortTypeProperty
public final ObjectProperty<TableColumn.SortType> sortTypeProperty()
Used to state whether this column, if it is part of a sort order (seeTableView.getSortOrder()
for more details), should be sorted in ascending or descending order. Simply toggling this property will result in the sort order changing in the TableView, assuming of course that this column is in the sortOrder ObservableList to begin with.- See Also:
getSortType()
,setSortType(TableColumn.SortType)
-
setSortType
public final void setSortType(TableColumn.SortType value)
Sets the value of the property sortType.- Property description:
- Used to state whether this column, if it is part of a sort order (see
TableView.getSortOrder()
for more details), should be sorted in ascending or descending order. Simply toggling this property will result in the sort order changing in the TableView, assuming of course that this column is in the sortOrder ObservableList to begin with.
-
getSortType
public final TableColumn.SortType getSortType()
Gets the value of the property sortType.- Property description:
- Used to state whether this column, if it is part of a sort order (see
TableView.getSortOrder()
for more details), should be sorted in ascending or descending order. Simply toggling this property will result in the sort order changing in the TableView, assuming of course that this column is in the sortOrder ObservableList to begin with.
-
setOnEditStart
public final void setOnEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditStart.- Property description:
- This event handler will be fired when the user successfully initiates editing.
-
getOnEditStart
public final EventHandler<TableColumn.CellEditEvent<S,T>> getOnEditStart()
Gets the value of the property onEditStart.- Property description:
- This event handler will be fired when the user successfully initiates editing.
-
onEditStartProperty
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.- See Also:
getOnEditStart()
,setOnEditStart(EventHandler)
-
setOnEditCommit
public final void setOnEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCommit.- Property description:
- This event handler will be fired when the user successfully commits their editing.
-
getOnEditCommit
public final EventHandler<TableColumn.CellEditEvent<S,T>> getOnEditCommit()
Gets the value of the property onEditCommit.- Property description:
- This event handler will be fired when the user successfully commits their editing.
-
onEditCommitProperty
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditCommitProperty()
This event handler will be fired when the user successfully commits their editing.- See Also:
getOnEditCommit()
,setOnEditCommit(EventHandler)
-
setOnEditCancel
public final void setOnEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCancel.- Property description:
- This event handler will be fired when the user cancels editing a cell.
-
getOnEditCancel
public final EventHandler<TableColumn.CellEditEvent<S,T>> getOnEditCancel()
Gets the value of the property onEditCancel.- Property description:
- This event handler will be fired when the user cancels editing a cell.
-
onEditCancelProperty
public final ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.- See Also:
getOnEditCancel()
,setOnEditCancel(EventHandler)
-
getTypeSelector
public String getTypeSelector()
The type of thisStyleable
that is to be used in selector matching. This is analogous to an "element" in HTML. (CSS Type Selector).- Specified by:
getTypeSelector
in interfaceStyleable
- Returns:
- "TableColumn"
- Since:
- JavaFX 8.0
-
getStyleableParent
public Styleable getStyleableParent()
Return the parent of this Styleable, or null if there is no parent.- Specified by:
getStyleableParent
in interfaceStyleable
- Returns:
getTableView()
- Since:
- JavaFX 8.0
-
getCssMetaData
public List<CssMetaData<? extends Styleable,?>> getCssMetaData()
The CssMetaData of this Styleable. This may be returned as an unmodifiable list.- Specified by:
getCssMetaData
in interfaceStyleable
- Returns:
- the CssMetaData
- Since:
- JavaFX 8.0
-
getClassCssMetaData
public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
- Returns:
- The CssMetaData associated with this class, which may include the CssMetaData of its superclasses.
- Since:
- JavaFX 8.0
-
-