jadex.util.collection
Class ConcurrencyCheckingList
java.lang.Object
jadex.util.collection.ConcurrencyCheckingList
- All Implemented Interfaces:
- Serializable, Iterable, Collection, List
public class ConcurrencyCheckingList
- extends Object
- implements List, Serializable
A wrapper for a list to detect undesired
concurrent access.
- See Also:
- Serialized Form
ConcurrencyCheckingList
public ConcurrencyCheckingList(List list)
- Wrap the given list.
add
public boolean add(Object o)
- Specified by:
add
in interface Collection
- Specified by:
add
in interface List
add
public void add(int index,
Object element)
- Specified by:
add
in interface List
addAll
public boolean addAll(Collection c)
- Specified by:
addAll
in interface Collection
- Specified by:
addAll
in interface List
addAll
public boolean addAll(int index,
Collection c)
- Specified by:
addAll
in interface List
clear
public void clear()
- Specified by:
clear
in interface Collection
- Specified by:
clear
in interface List
contains
public boolean contains(Object o)
- Specified by:
contains
in interface Collection
- Specified by:
contains
in interface List
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAll
in interface Collection
- Specified by:
containsAll
in interface List
get
public Object get(int index)
- Specified by:
get
in interface List
indexOf
public int indexOf(Object o)
- Specified by:
indexOf
in interface List
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Collection
- Specified by:
isEmpty
in interface List
iterator
public Iterator iterator()
- Specified by:
iterator
in interface Iterable
- Specified by:
iterator
in interface Collection
- Specified by:
iterator
in interface List
lastIndexOf
public int lastIndexOf(Object o)
- Specified by:
lastIndexOf
in interface List
listIterator
public ListIterator listIterator()
- Specified by:
listIterator
in interface List
listIterator
public ListIterator listIterator(int index)
- Specified by:
listIterator
in interface List
remove
public Object remove(int index)
- Specified by:
remove
in interface List
remove
public boolean remove(Object o)
- Specified by:
remove
in interface Collection
- Specified by:
remove
in interface List
removeAll
public boolean removeAll(Collection c)
- Specified by:
removeAll
in interface Collection
- Specified by:
removeAll
in interface List
retainAll
public boolean retainAll(Collection c)
- Specified by:
retainAll
in interface Collection
- Specified by:
retainAll
in interface List
set
public Object set(int index,
Object element)
- Specified by:
set
in interface List
size
public int size()
- Specified by:
size
in interface Collection
- Specified by:
size
in interface List
subList
public List subList(int fromIndex,
int toIndex)
- Specified by:
subList
in interface List
toArray
public Object[] toArray()
- Specified by:
toArray
in interface Collection
- Specified by:
toArray
in interface List
toArray
public Object[] toArray(Object[] a)
- Specified by:
toArray
in interface Collection
- Specified by:
toArray
in interface List
Submit a bug or feature
For further API reference and developer documentation, see the Jadex User Guide and the Jadex Tutorial. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, and working code examples. Copyright (C) 2002-2007 Lars Braubach, Alexander Pokahr - University of Hamburg. Use is subject to license terms.