Package org.arakhne.afc.javafx.changes
Class SimpleListUpdateChange<E>
- java.lang.Object
-
- javafx.collections.ListChangeListener.Change<E>
-
- org.arakhne.afc.javafx.changes.ListNonIterableChange<E>
-
- org.arakhne.afc.javafx.changes.SimpleListUpdateChange<E>
-
- Type Parameters:
E- the type of the changed object.
public class SimpleListUpdateChange<E> extends ListNonIterableChange<E>
Simple event for JavaFX changes.- Since:
- 17.0
- Version:
- 17.0 2020-01-04 14:41:49
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.advanced
- Maven Artifact Id:
- javafx
-
-
Constructor Summary
Constructors Constructor Description SimpleListUpdateChange(int from, int to, javafx.collections.ObservableList<E> list)Constructor.SimpleListUpdateChange(int position, javafx.collections.ObservableList<E> list)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<E>getRemoved()booleanwasUpdated()-
Methods inherited from class org.arakhne.afc.javafx.changes.ListNonIterableChange
checkState, getFrom, getPermutation, getTo, next, reset
-
-
-
-
Constructor Detail
-
SimpleListUpdateChange
public SimpleListUpdateChange(int position, javafx.collections.ObservableList<E> list)Constructor.- Parameters:
position- the index of change.list- the changed list.
-
SimpleListUpdateChange
public SimpleListUpdateChange(int from, int to, javafx.collections.ObservableList<E> list)Constructor.- Parameters:
from- the index of the first change.to- the index + 1 of the last change.list- the changed list.
-
-