net.sf.beanlib.utils
Class CollectionUtils.SynchronizedCollection<E>

java.lang.Object
  extended by net.sf.beanlib.utils.CollectionUtils.SynchronizedCollection<E>
All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>
Direct Known Subclasses:
CollectionUtils.SynchronizedSet
Enclosing class:
CollectionUtils

static class CollectionUtils.SynchronizedCollection<E>
extends Object
implements Collection<E>, Serializable

Basically cloned from and identification to java.util.Collections.SynchronizedCollection.

Author:
Joe D. Velopar

Field Summary
(package private)  Collection<E> c
           
(package private)  Object mutex
           
private static long serialVersionUID
           
 
Constructor Summary
CollectionUtils.SynchronizedCollection(Collection<E> c)
           
CollectionUtils.SynchronizedCollection(Collection<E> c, Object mutex)
           
 
Method Summary
 boolean add(E o)
           
 boolean addAll(Collection<? extends E> coll)
           
 void clear()
           
 boolean contains(Object o)
           
 boolean containsAll(Collection<?> coll)
           
 boolean isEmpty()
           
 Iterator<E> iterator()
           
 boolean remove(Object o)
           
 boolean removeAll(Collection<?> coll)
           
 boolean retainAll(Collection<?> coll)
           
 int size()
           
 Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 String toString()
           
private  void writeObject(ObjectOutputStream s)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Collection
equals, hashCode
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

c

Collection<E> c

mutex

Object mutex
Constructor Detail

CollectionUtils.SynchronizedCollection

CollectionUtils.SynchronizedCollection(Collection<E> c)

CollectionUtils.SynchronizedCollection

CollectionUtils.SynchronizedCollection(Collection<E> c,
                                       Object mutex)
Method Detail

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>

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>

iterator

public Iterator<E> iterator()
Specified by:
iterator in interface Iterable<E>
Specified by:
iterator in interface Collection<E>

add

public boolean add(E o)
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<?> coll)
Specified by:
containsAll in interface Collection<E>

addAll

public boolean addAll(Collection<? extends E> coll)
Specified by:
addAll in interface Collection<E>

removeAll

public boolean removeAll(Collection<?> coll)
Specified by:
removeAll in interface Collection<E>

retainAll

public boolean retainAll(Collection<?> coll)
Specified by:
retainAll in interface Collection<E>

clear

public void clear()
Specified by:
clear in interface Collection<E>

toString

public String toString()
Overrides:
toString in class Object

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException