org.norther.tammi.acorn.util
Class NamedCollectionAdapter<E>

java.lang.Object
  extended by org.norther.tammi.acorn.util.NamedCollectionAdapter<E>
Type Parameters:
E - the element type.
All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, NamedCollection<E>

public class NamedCollectionAdapter<E>
extends Object
implements NamedCollection<E>, Serializable

A default implementation of NamedCollection.

Version:
$Id: NamedCollectionAdapter.java,v 1.2 2009/09/28 15:08:48 cvsimp Exp $
Author:
Marketta Priha
See Also:
Serialized Form

Constructor Summary
NamedCollectionAdapter(String name, Collection<? extends E> c)
           
 
Method Summary
 boolean add(E e)
           
 boolean addAll(Collection<? extends E> c)
           
 void clear()
           
 boolean contains(Object o)
           
 boolean containsAll(Collection<?> c)
           
 boolean equals(Object o)
           
protected  Collection<E> getCollection()
          Gets the collection adaptee.
 String getName()
          Gets the name.
 int hashCode()
           
 boolean isEmpty()
           
 Iterator<E> iterator()
           
 boolean remove(Object o)
           
 boolean removeAll(Collection<?> c)
           
 boolean retainAll(Collection<?> c)
           
protected  void setCollection(Collection<E> c)
          Sets the collection adaptee.
 int size()
           
 Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NamedCollectionAdapter

public NamedCollectionAdapter(String name,
                              Collection<? extends E> c)
Parameters:
name -
c -
Method Detail

getName

public String getName()
Description copied from interface: NamedCollection
Gets the name.

Specified by:
getName in interface NamedCollection<E>
Returns:
the name.

add

public boolean add(E e)
Specified by:
add in interface Collection<E>

addAll

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

clear

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

contains

public boolean contains(Object o)
Specified by:
contains in interface Collection<E>

containsAll

public boolean containsAll(Collection<?> c)
Specified by:
containsAll in interface Collection<E>

equals

public boolean equals(Object o)
Specified by:
equals in interface Collection<E>
Overrides:
equals in class Object

hashCode

public int hashCode()
Specified by:
hashCode in interface Collection<E>
Overrides:
hashCode in class Object

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Collection<E>

iterator

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

remove

public boolean remove(Object o)
Specified by:
remove 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>

size

public int size()
Specified by:
size 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>

getCollection

protected Collection<E> getCollection()
Gets the collection adaptee.

Returns:
the wrapped collection.

setCollection

protected void setCollection(Collection<E> c)
Sets the collection adaptee.

Parameters:
c - the wrapped collection.


Copyright © 2004 The Norther Organization. All rights reserved.