public interface ArrayChangeListener<T extends ObservableArray<T>>
Modifier and Type | Method and Description |
---|---|
void |
onChanged(T observableArray,
boolean sizeChanged,
int from,
int to)
Called after a change has been made to an ObservableArray.
|
void onChanged(T observableArray, boolean sizeChanged, int from, int to)
sizeChanged
- indicates size of array changedfrom
- A beginning (inclusive) of an interval related to the changeto
- An end (exclusive) of an interval related to the change.Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.