E - the list element typepublic interface ListChangeListener<E>
ListChangeListener.Change| Modifier and Type | Interface and Description |
|---|---|
static class |
ListChangeListener.Change<E>
Represents a report of a change done to an Observablelist.
The getRemoved() method returns a list of elements that have been
replaced or removed from the list.The range [getFrom(), getTo()) is the range of elements
in the list that contain new elements. |
| Modifier and Type | Method and Description |
|---|---|
void |
onChanged(ListChangeListener.Change<? extends E> c)
Called after a change has been made to an ObservableList.
|
void onChanged(ListChangeListener.Change<? extends E> c)
c - an object representing the change that was doneListChangeListener.ChangeCopyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.