nl.tudelft.simulation.event.util
Class EventProducingList
java.lang.Object
nl.tudelft.simulation.event.EventProducer
nl.tudelft.simulation.event.util.EventProducingList
- All Implemented Interfaces:
- java.util.Collection, EventProducerInterface, java.util.List, java.io.Serializable
- public class EventProducingList
- extends EventProducer
- implements java.util.List
The Event producing list provides a list 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 2003-2004 Delft
University of Technology , the Netherlands.
See for project information www.simulation.tudelft.nl
License of use: General Public
License (GPL) , no warranty
- Since:
- 1.2
- Version:
- 1.1, 2004-03-18
- Author:
- Peter
Jacobs
- See Also:
- Serialized Form
|
Constructor Summary |
EventProducingList(java.util.List parent)
constructs a new EventProducingList. |
|
Method Summary |
void |
add(int index,
java.lang.Object element)
|
boolean |
add(java.lang.Object o)
|
boolean |
addAll(java.util.Collection c)
|
boolean |
addAll(int index,
java.util.Collection c)
|
void |
clear()
|
boolean |
contains(java.lang.Object o)
|
boolean |
containsAll(java.util.Collection c)
|
java.lang.Object |
get(int index)
|
int |
indexOf(java.lang.Object o)
|
boolean |
isEmpty()
|
java.util.Iterator |
iterator()
|
int |
lastIndexOf(java.lang.Object o)
|
java.util.ListIterator |
listIterator()
|
java.util.ListIterator |
listIterator(int index)
|
java.lang.Object |
remove(int index)
|
boolean |
remove(java.lang.Object o)
|
boolean |
removeAll(java.util.Collection c)
|
boolean |
retainAll(java.util.Collection c)
|
java.lang.Object |
set(int index,
java.lang.Object element)
|
int |
size()
|
java.util.List |
subList(int fromIndex,
int toIndex)
|
java.lang.Object[] |
toArray()
|
java.lang.Object[] |
toArray(java.lang.Object[] 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.List |
equals, hashCode |
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
EventProducingList
public EventProducingList(java.util.List parent)
- constructs a new EventProducingList.
- Parameters:
parent - the parent list.
size
public int size()
- Specified by:
size in interface java.util.List
- See Also:
List.size()
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty in interface java.util.List
- See Also:
List.isEmpty()
clear
public void clear()
- Specified by:
clear in interface java.util.List
- See Also:
List.clear()
add
public void add(int index,
java.lang.Object element)
- Specified by:
add in interface java.util.List
- See Also:
List.add(int, java.lang.Object)
add
public boolean add(java.lang.Object o)
- Specified by:
add in interface java.util.List
- See Also:
Collection.add(java.lang.Object)
addAll
public boolean addAll(java.util.Collection c)
- Specified by:
addAll in interface java.util.List
- See Also:
Collection.addAll(java.util.Collection)
addAll
public boolean addAll(int index,
java.util.Collection c)
- Specified by:
addAll in interface java.util.List
- See Also:
List.addAll(int, java.util.Collection)
contains
public boolean contains(java.lang.Object o)
- Specified by:
contains in interface java.util.List
- See Also:
Collection.contains(java.lang.Object)
containsAll
public boolean containsAll(java.util.Collection c)
- Specified by:
containsAll in interface java.util.List
- See Also:
Collection.containsAll(java.util.Collection)
get
public java.lang.Object get(int index)
- Specified by:
get in interface java.util.List
- See Also:
List.get(int)
indexOf
public int indexOf(java.lang.Object o)
- Specified by:
indexOf in interface java.util.List
- See Also:
List.indexOf(java.lang.Object)
iterator
public java.util.Iterator iterator()
- Specified by:
iterator in interface java.util.List
- See Also:
Collection.iterator()
lastIndexOf
public int lastIndexOf(java.lang.Object o)
- Specified by:
lastIndexOf in interface java.util.List
- See Also:
List.lastIndexOf(java.lang.Object)
listIterator
public java.util.ListIterator listIterator()
- Specified by:
listIterator in interface java.util.List
- See Also:
List.listIterator()
listIterator
public java.util.ListIterator listIterator(int index)
- Specified by:
listIterator in interface java.util.List
- See Also:
List.listIterator(int)
remove
public java.lang.Object remove(int index)
- Specified by:
remove in interface java.util.List
- See Also:
List.remove(int)
remove
public boolean remove(java.lang.Object o)
- Specified by:
remove in interface java.util.List
- See Also:
Collection.remove(java.lang.Object)
removeAll
public boolean removeAll(java.util.Collection c)
- Specified by:
removeAll in interface java.util.List
- See Also:
Collection.removeAll(java.util.Collection)
retainAll
public boolean retainAll(java.util.Collection c)
- Specified by:
retainAll in interface java.util.List
- See Also:
Collection.retainAll(java.util.Collection)
set
public java.lang.Object set(int index,
java.lang.Object element)
- Specified by:
set in interface java.util.List
- See Also:
List.set(int, java.lang.Object)
subList
public java.util.List subList(int fromIndex,
int toIndex)
- Specified by:
subList in interface java.util.List
- See Also:
List.subList(int, int)
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray in interface java.util.List
- See Also:
Collection.toArray()
toArray
public java.lang.Object[] toArray(java.lang.Object[] a)
- Specified by:
toArray in interface java.util.List
- See Also:
Collection.toArray(java.lang.Object[])
Copyright © 2002-2004 Delft University of Technology, the Netherlands. All Rights Reserved.