cz.cuni.amis.utils.collections
Class ObservableCollection<E>
java.lang.Object
cz.cuni.amis.utils.collections.ObservableCollection<E>
- Type Parameters:
E
-
- All Implemented Interfaces:
- Iterable<E>, Collection<E>
- Direct Known Subclasses:
- ObservableList, ObservableSet
public class ObservableCollection<E>
- extends Object
- implements Collection<E>
Wrapper for collections. It raises events when elements are added/removed
from the collection.
- Author:
- Ik
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
col
protected Collection<E> col
eventListeners
protected Listeners<CollectionEventListener> eventListeners
ObservableCollection
public ObservableCollection(Collection c)
addCollectionListener
public void addCollectionListener(CollectionEventListener listener)
removeCollectionListener
public boolean removeCollectionListener(CollectionEventListener listener)
size
public int size()
- Specified by:
size
in interface Collection<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Collection<E>
contains
public boolean contains(Object o)
- Specified by:
contains
in interface Collection<E>
iterator
public Iterator<E> iterator()
- Specified by:
iterator
in interface Iterable<E>
- Specified by:
iterator
in interface Collection<E>
toArray
public Object[] toArray()
- Specified by:
toArray
in interface Collection<E>
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interface Collection<E>
add
public boolean add(E e)
- Specified by:
add
in interface Collection<E>
remove
public boolean remove(Object o)
- Specified by:
remove
in interface Collection<E>
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll
in interface Collection<E>
addAll
public boolean addAll(Collection<? extends E> c)
- Specified by:
addAll
in interface Collection<E>
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interface Collection<E>
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interface Collection<E>
clear
public void clear()
- Specified by:
clear
in interface Collection<E>
notifyPreAdd
protected void notifyPreAdd(Collection<? extends E> add)
notifyPostAdd
protected void notifyPostAdd(Collection<? extends E> add)
notifyPreRemove
protected void notifyPreRemove(Collection<?> remove)
notifyPostRemove
protected void notifyPostRemove(Collection<?> remove)
Copyright © 2014 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.