public class ReplayedList<A>
This list type just replays changes propagated from the underlying source list. Used for testing changes and backing a non-backed observable
Constructor and Description |
---|
ReplayedList(javafx.collections.ObservableList<A> sourceList)
This list type just replays changes propagated from the underlying source list. Used for testing changes and backing a
non-backed observable
|
Modifier and Type | Method and Description |
---|---|
A |
get(int index) |
java.util.ArrayList<A> |
getReplayedList() |
int |
getSize() |
int |
getSourceIndex(int index) |
java.lang.Object |
remove(int p) |
java.lang.Object |
removeAt(int p) |
int |
size() |
void |
sourceChanged(javafx.collections.ListChangeListener.Change<? extends A> c) |
public ReplayedList(javafx.collections.ObservableList<A> sourceList)
This list type just replays changes propagated from the underlying source list. Used for testing changes and backing a non-backed observable
public java.util.ArrayList<A> getReplayedList()
public int getSize()
public int size()
public void sourceChanged(javafx.collections.ListChangeListener.Change<? extends A> c)
public int getSourceIndex(int index)
public A get(int index)
public java.lang.Object removeAt(int p)
public java.lang.Object remove(int p)