nl.tudelft.simulation.event.util
Class EventProducingCollection<T>

java.lang.Object
  extended by nl.tudelft.simulation.event.EventProducer
      extended by nl.tudelft.simulation.event.util.EventProducingCollection<T>
Type Parameters:
T - The type t od the eventproducing list.
All Implemented Interfaces:
java.io.Serializable, java.lang.Iterable<T>, java.util.Collection<T>, EventProducerInterface

public class EventProducingCollection<T>
extends EventProducer
implements java.util.Collection<T>

The Event producing collection provides a set to which one can subscribe interest in entry changes. This class does not keep track of changes which take place indirectly. One is for example not notified on map.iterator.remove(). A listener must subscribe to the iterator individually.

(c) copyright 2002-2005 Delft University of Technology , the Netherlands.

See for project information www.simulation.tudelft.nl/event
License of use: Lesser General Public License (LGPL) , no warranty

Since:
1.5
Version:
$Revision: 1.5 $ $Date: 2005/07/04 12:23:01 $
Author:
Peter Jacobs
See Also:
Serialized Form

Field Summary
static EventType OBJECT_ADDED_EVENT
          OBJECT_ADDED_EVENT is fired on new entries
static EventType OBJECT_REMOVED_EVENT
          OBJECT_REMOVED_EVENT is fired on removel of entries
 
Fields inherited from class nl.tudelft.simulation.event.EventProducer
listeners
 
Fields inherited from interface nl.tudelft.simulation.event.EventProducerInterface
FIRST_POSITION, LAST_POSITION
 
Constructor Summary
EventProducingCollection(java.util.Collection<T> parent)
          constructs a new EventProducingList.
 
Method Summary
 boolean add(T o)
           
 boolean addAll(java.util.Collection<? extends T> c)
           
 void clear()
           
 boolean contains(java.lang.Object o)
           
 boolean containsAll(java.util.Collection c)
           
 boolean isEmpty()
           
 java.util.Iterator<T> iterator()
           
 boolean remove(java.lang.Object o)
           
 boolean removeAll(java.util.Collection c)
           
 boolean retainAll(java.util.Collection c)
           
 int size()
           
 java.lang.Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 
Methods inherited from class nl.tudelft.simulation.event.EventProducer
addListener, addListener, addListener, addListener, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, getEventTypes, removeAllListeners, removeAllListeners, removeListener
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Collection
equals, hashCode
 

Field Detail

OBJECT_ADDED_EVENT

public static final EventType OBJECT_ADDED_EVENT
OBJECT_ADDED_EVENT is fired on new entries


OBJECT_REMOVED_EVENT

public static final EventType OBJECT_REMOVED_EVENT
OBJECT_REMOVED_EVENT is fired on removel of entries

Constructor Detail

EventProducingCollection

public EventProducingCollection(java.util.Collection<T> parent)
constructs a new EventProducingList.

Parameters:
parent - the parent collection.
Method Detail

size

public int size()
Specified by:
size in interface java.util.Collection<T>
See Also:
Collection.size()

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface java.util.Collection<T>
See Also:
Collection.isEmpty()

clear

public void clear()
Specified by:
clear in interface java.util.Collection<T>
See Also:
Collection.clear()

add

public boolean add(T o)
Specified by:
add in interface java.util.Collection<T>
See Also:
Collection.add(java.lang.Object)

addAll

public boolean addAll(java.util.Collection<? extends T> c)
Specified by:
addAll in interface java.util.Collection<T>
See Also:
Collection.addAll(java.util.Collection)

contains

public boolean contains(java.lang.Object o)
Specified by:
contains in interface java.util.Collection<T>
See Also:
Collection.contains(java.lang.Object)

containsAll

public boolean containsAll(java.util.Collection c)
Specified by:
containsAll in interface java.util.Collection<T>
See Also:
Collection.containsAll(java.util.Collection)

iterator

public java.util.Iterator<T> iterator()
Specified by:
iterator in interface java.lang.Iterable<T>
Specified by:
iterator in interface java.util.Collection<T>
See Also:
Collection.iterator()

remove

public boolean remove(java.lang.Object o)
Specified by:
remove in interface java.util.Collection<T>
See Also:
Collection.remove(java.lang.Object)

removeAll

public boolean removeAll(java.util.Collection c)
Specified by:
removeAll in interface java.util.Collection<T>
See Also:
Collection.removeAll(java.util.Collection)

retainAll

public boolean retainAll(java.util.Collection c)
Specified by:
retainAll in interface java.util.Collection<T>
See Also:
Collection.retainAll(java.util.Collection)

toArray

public java.lang.Object[] toArray()
Specified by:
toArray in interface java.util.Collection<T>
See Also:
Collection.toArray()

toArray

public <T> T[] toArray(T[] a)
Specified by:
toArray in interface java.util.Collection<T>
See Also:
Collection.toArray(java.lang.Object[])


Copyright © 2002-2005 Delft University of Technology, the Netherlands. All Rights Reserved.