public class ConcatenatedList<A>
class ConcatenatedList
takes a list of lists and concatenates them. Any change to the underlying lists or the outer list
is propagated as expected.
class ConcatenatedList
Constructor and Description |
---|
ConcatenatedList(javafx.collections.ObservableList<javafx.collections.ObservableList> sourceList)
class ConcatenatedList takes a list of lists and concatenates them. Any change to the underlying lists or the outer list
is propagated as expected. |
Modifier and Type | Method and Description |
---|---|
A |
get(int index) |
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 javafx.collections.ObservableList<A>> change) |
public ConcatenatedList(javafx.collections.ObservableList<javafx.collections.ObservableList> sourceList)
class ConcatenatedList
takes a list of lists and concatenates them. Any change to the underlying lists or the outer list
is propagated as expected.
class ConcatenatedList
public void sourceChanged(javafx.collections.ListChangeListener.Change<? extends javafx.collections.ObservableList<A>> change)
public int getSize()
public int size()
public int getSourceIndex(int index)
public A get(int index)
public java.lang.Object removeAt(int p)
public java.lang.Object remove(int p)