Uses of Class
javafx.collections.ListChangeListener.Change
Packages that use ListChangeListener.Change
Package
Description
The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Contains the essential JavaFX collections and collection utilities
Provides JavaFX collections that wrap and transform (for example, sort
or filter) other JavaFX collections.
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
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.
-
Uses of ListChangeListener.Change in javafx.beans.property
Methods in javafx.beans.property with parameters of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected void
ListPropertyBase.fireValueChangedEvent
(ListChangeListener.Change<? extends E> change) protected void
ReadOnlyListPropertyBase.fireValueChangedEvent
(ListChangeListener.Change<? extends E> change) This method needs to be called if the content of the referencedObservableList
changes. -
Uses of ListChangeListener.Change in javafx.collections
Methods in javafx.collections with parameters of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected final void
ObservableListBase.fireChange
(ListChangeListener.Change<? extends E> change) Notifies all listeners of a changevoid
ListChangeListener.onChanged
(ListChangeListener.Change<? extends E> c) Called after a change has been made to an ObservableList.void
WeakListChangeListener.onChanged
(ListChangeListener.Change<? extends E> change) Called after a change has been made to an ObservableList. -
Uses of ListChangeListener.Change in javafx.collections.transformation
Methods in javafx.collections.transformation with parameters of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected void
FilteredList.sourceChanged
(ListChangeListener.Change<? extends E> c) protected void
SortedList.sourceChanged
(ListChangeListener.Change<? extends E> c) protected abstract void
TransformationList.sourceChanged
(ListChangeListener.Change<? extends F> c) Called when a change from the source is triggered. -
Uses of ListChangeListener.Change in javafx.scene.chart
Methods in javafx.scene.chart with parameters of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected void
XYChart.seriesChanged
(ListChangeListener.Change<? extends XYChart.Series> c) Called when each atomic change is made to the list of series for this chart -
Uses of ListChangeListener.Change in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected final Consumer<ListChangeListener.Change<?>>
SkinBase.unregisterListChangeListeners
(ObservableList<?> observableList) Unregisters all operations that have been registered usingSkinBase.registerListChangeListener(ObservableList, Consumer)
for the givenobservableList
.Method parameters in javafx.scene.control with type arguments of type ListChangeListener.ChangeModifier and TypeMethodDescriptionprotected final void
SkinBase.registerListChangeListener
(ObservableList<?> observableList, Consumer<ListChangeListener.Change<?>> operation) Registers an operation to perform when the givenobservableList
sends a list change event.