javafx.collections
Interface ListChangeListener<E>
Type Parameters:
E - the list element type
All Known Implementing Classes:
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ListChangeListener<E>
Interface that receives notifications of changes to an ObservableList.
Since:
JavaFX 2.0
See Also:
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static classListChangeListener.Change<E>Represents a report of a changes done to an Observablelist.
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description voidonChanged(ListChangeListener.Change<? extends E> c)Called after a change has been made to an ObservableList.
-
Method Detail
-
onChanged
void onChanged(ListChangeListener.Change<? extends E> c)
Called after a change has been made to an ObservableList.Parameters:
c- an object representing the change that was doneSee Also:
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.