Class ObservableArrayBase<T extends ObservableArray<T>>
java.lang.Object
javafx.collections.ObservableArrayBase<T>
- Type Parameters:
- T- actual array instance type
- All Implemented Interfaces:
- Observable,- ObservableArray<T>
public abstract class ObservableArrayBase<T extends ObservableArray<T>>
extends Object
implements ObservableArray<T>
Abstract class that serves as a base class for 
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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.final voidaddListener(ArrayChangeListener<T> listener) Add a listener to this observable array.protected final voidfireChange(boolean sizeChanged, int from, int to) Notifies all listeners of a changefinal voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.final voidremoveListener(ArrayChangeListener<T> listener) Tries to remove a listener from this observable array.Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface javafx.beans.ObservablesubscribeMethods declared in interface javafx.collections.ObservableArrayclear, ensureCapacity, resize, size, trimToSize
- 
Constructor Details- 
ObservableArrayBasepublic ObservableArrayBase()Creates a defaultObservableArrayBase.
 
- 
- 
Method Details- 
addListenerDescription 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 interface- Observable
- Parameters:
- listener- The listener to register
- See Also:
 
- 
removeListenerDescription 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 interface- Observable
- Parameters:
- listener- The listener to remove
- See Also:
 
- 
addListenerDescription copied from interface:ObservableArrayAdd a listener to this observable array.- Specified by:
- addListenerin interface- ObservableArray<T extends ObservableArray<T>>
- Parameters:
- listener- the listener for listening to the array changes
 
- 
removeListenerDescription 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 interface- ObservableArray<T extends ObservableArray<T>>
- Parameters:
- listener- a listener to remove
 
- 
fireChangeprotected final void fireChange(boolean sizeChanged, int from, int to) Notifies all listeners of a change- Parameters:
- sizeChanged- indicates size of array changed
- from- A beginning (inclusive) of an interval related to the change
- to- An end (exclusive) of an interval related to the change.
 
 
-