Class ListWrapper<T>
- java.lang.Object
- 
- jadex.commons.collection.wrappers.CollectionWrapper<T>
- 
- jadex.commons.collection.wrappers.ListWrapper<T>
 
 
- 
- All Implemented Interfaces:
- java.lang.Iterable<T>,- java.util.Collection<T>,- java.util.List<T>
 - Direct Known Subclasses:
- ListWrapper
 
 public abstract class ListWrapper<T> extends CollectionWrapper<T> implements java.util.List<T> 
- 
- 
Field Summary- 
Fields inherited from class jadex.commons.collection.wrappers.CollectionWrapperdelegate
 
- 
 - 
Constructor SummaryConstructors Constructor Description ListWrapper(java.util.List<T> delegate)Create a new wrapper.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, T element)booleanaddAll(int index, java.util.Collection<? extends T> c)Tget(int index)java.util.List<T>getList()intindexOf(java.lang.Object o)intlastIndexOf(java.lang.Object o)java.util.ListIterator<T>listIterator()java.util.ListIterator<T>listIterator(int index)Tremove(int index)Tset(int index, T element)java.util.List<T>subList(int fromIndex, int toIndex)- 
Methods inherited from class jadex.commons.collection.wrappers.CollectionWrapperadd, addAll, clear, contains, containsAll, entryAdded, entryChanged, entryRemoved, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ListWrapperpublic ListWrapper(java.util.List<T> delegate) Create a new wrapper.- Parameters:
- delegate- The delegate.
 
 
- 
 - 
Method Detail- 
getListpublic java.util.List<T> getList() 
 - 
addAllpublic boolean addAll(int index, java.util.Collection<? extends T> c)- Specified by:
- addAllin interface- java.util.List<T>
 
 - 
indexOfpublic int indexOf(java.lang.Object o) - Specified by:
- indexOfin interface- java.util.List<T>
 
 - 
lastIndexOfpublic int lastIndexOf(java.lang.Object o) - Specified by:
- lastIndexOfin interface- java.util.List<T>
 
 - 
listIteratorpublic java.util.ListIterator<T> listIterator() - Specified by:
- listIteratorin interface- java.util.List<T>
 
 - 
listIteratorpublic java.util.ListIterator<T> listIterator(int index) - Specified by:
- listIteratorin interface- java.util.List<T>
 
 
- 
 
-