org.eclipse.emf.common.notify.impl
Class NotificationChainImpl
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
org.eclipse.emf.common.util.BasicEList<Notification>
org.eclipse.emf.common.notify.impl.NotificationChainImpl
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<Notification>, java.util.Collection<Notification>, java.util.List<Notification>, java.util.RandomAccess, NotificationChain, EList<Notification>
public class NotificationChainImpl
- extends BasicEList<Notification>
- implements NotificationChain
A list that acts as a notification chain.
- See Also:
- Serialized Form
Fields inherited from class java.util.AbstractList |
modCount |
Methods inherited from class org.eclipse.emf.common.util.BasicEList |
add, addAll, addAll, addAllUnique, addAllUnique, addAllUnique, addAllUnique, addUnique, addUnique, assign, basicGet, basicIterator, basicList, basicListIterator, basicListIterator, canContainNull, clear, clone, contains, containsAll, data, didAdd, didChange, didClear, didMove, didRemove, didSet, equalObjects, equals, get, getDuplicates, getNonDuplicates, grow, hashCode, indexOf, isEmpty, isUnique, iterator, lastIndexOf, listIterator, listIterator, move, move, remove, remove, removeAll, resolve, retainAll, set, setData, setUnique, shrink, size, toArray, toArray, toString, useEquals, validate |
Methods inherited from class java.util.AbstractList |
removeRange, subList |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
subList |
NotificationChainImpl
public NotificationChainImpl()
- Creates an empty instance.
NotificationChainImpl
public NotificationChainImpl(int initialCapacity)
- Creates an empty instance with a given capacity.
- Parameters:
initialCapacity
- the initial capacity of the list before it must grow.
newData
protected java.lang.Object[] newData(int capacity)
- Returns new data storage of type
Notification
[].
- Overrides:
newData
in class BasicEList<Notification>
- Returns:
- new data storage.
add
public boolean add(Notification newNotification)
- Adds or merges a new notification.
- Specified by:
add
in interface java.util.Collection<Notification>
- Specified by:
add
in interface java.util.List<Notification>
- Specified by:
add
in interface NotificationChain
- Overrides:
add
in class BasicEList<Notification>
- Parameters:
newNotification
- a notification.
- Returns:
true
when the notification is added and false
when it is merged.- See Also:
BasicEList.addUnique(Object)
dispatch
public void dispatch()
- Description copied from interface:
NotificationChain
- Dispatches each notification to the appropriate notifier via
Notifier.eNotify
.
- Specified by:
dispatch
in interface NotificationChain
dispatch
protected void dispatch(Notification notification)
- Dispatches the notification to its notifier.