Package com.tagtraum.beatunes.library
Class AbstractWrapperFactory<T>
- java.lang.Object
-
- com.tagtraum.beatunes.library.AbstractWrapperFactory<T>
-
- All Implemented Interfaces:
WrapperFactory<T>
public abstract class AbstractWrapperFactory<T> extends Object implements WrapperFactory<T>
AbstractWrapperFactory.- Author:
- Hendrik Schreiber
- See Also:
WrappingProxyFactory
-
-
Constructor Summary
Constructors Constructor Description AbstractWrapperFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<T>
wrap(Iterable<T> iterable)
Collection<T>
wrap(Collection<T> collection)
Iterator<T>
wrap(Iterator<T> iterator)
List<T>
wrap(List<T> list)
ListIterator<T>
wrap(ListIterator<T> listIterator)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.tagtraum.core.wrap.WrapperFactory
wrap
-
-
-
-
Method Detail
-
wrap
public Iterable<T> wrap(Iterable<T> iterable)
- Specified by:
wrap
in interfaceWrapperFactory<T>
-
wrap
public Iterator<T> wrap(Iterator<T> iterator)
- Specified by:
wrap
in interfaceWrapperFactory<T>
-
wrap
public ListIterator<T> wrap(ListIterator<T> listIterator)
- Specified by:
wrap
in interfaceWrapperFactory<T>
-
wrap
public Collection<T> wrap(Collection<T> collection)
- Specified by:
wrap
in interfaceWrapperFactory<T>
-
-