Class ObservableArrayBase<T extends ObservableArray<T>>
- javafx.collections.ObservableArrayBase<T>
Type Parameters:
T - actual array instance type
All Implemented Interfaces:
public abstract class ObservableArrayBase<T extends ObservableArray<T>> extends Object implements ObservableArray<T>
ObservableArray implementations. The base class provides listener handling functionality by implementing addListener and removeListener methods. fireChange(boolean, int, int) method is provided for notifying the listeners.Since:
JavaFX 8.0
See Also:
-
Constructor Summary
Constructors Constructor and Description ObservableArrayBase()
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description voidaddListener(ArrayChangeListener<T> listener)Add a listener to this observable array.voidaddListener(InvalidationListener listener)Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.protected voidfireChange(boolean sizeChanged, int from, int to)Notifies all listeners of a changevoidremoveListener(ArrayChangeListener<T> listener)Tries to remove a listener from this observable array.voidremoveListener(InvalidationListener listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javafx.collections.ObservableArray
clear, ensureCapacity, resize, size, trimToSize
-
-
Constructor Detail
-
ObservableArrayBase
public ObservableArrayBase()
-
-
Method Detail
-
addListener
public final void addListener(InvalidationListener listener)
Description copied from interface:ObservableAdds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
InvalidationListenerinstance may be safely registered for differentObservables.The
Observablestores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListenerafter use or to use an instance ofWeakInvalidationListeneravoid this situation.Specified by:
addListenerin interfaceObservableParameters:
listener- The listener to register
-
removeListener
public final void removeListener(InvalidationListener listener)
Description copied from interface:ObservableRemoves the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
Specified by:
removeListenerin interfaceObservableParameters:
listener- The listener to remove
-
addListener
public final void addListener(ArrayChangeListener<T> listener)
Description copied from interface:ObservableArrayAdd a listener to this observable array.Specified by:
addListenerin interfaceObservableArray<T extends ObservableArray<T>>Parameters:
listener- the listener for listening to the array changes
-
removeListener
public final void removeListener(ArrayChangeListener<T> listener)
Description copied from interface:ObservableArrayTries to remove a listener from this observable array. If the listener is not attached to this array, nothing happens.Specified by:
removeListenerin interfaceObservableArray<T extends ObservableArray<T>>Parameters:
listener- a listener to remove
-
fireChange
protected final void fireChange(boolean sizeChanged, int from, int to)Notifies all listeners of a changeParameters:
change-
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.