org.apache.commons.collections.primitives.decorators

Class BaseProxyShortList

abstract class BaseProxyShortList extends BaseProxyShortCollection implements ShortList

Since: Commons Primitives 1.0

Version: $Revision: 1.1 $ $Date: 2003/10/29 18:57:15 $

Author: Rodney Waldhoff

Constructor Summary
protected BaseProxyShortList()
Method Summary
voidadd(int index, short element)
booleanaddAll(int index, ShortCollection collection)
shortget(int index)
protected ShortCollectiongetProxiedCollection()
protected abstract ShortListgetProxiedList()
intindexOf(short element)
intlastIndexOf(short element)
ShortListIteratorlistIterator()
ShortListIteratorlistIterator(int index)
shortremoveElementAt(int index)
shortset(int index, short element)
ShortListsubList(int fromIndex, int toIndex)

Constructor Detail

BaseProxyShortList

protected BaseProxyShortList()

Method Detail

add

public void add(int index, short element)

addAll

public boolean addAll(int index, ShortCollection collection)

get

public short get(int index)

getProxiedCollection

protected final ShortCollection getProxiedCollection()

getProxiedList

protected abstract ShortList getProxiedList()

indexOf

public int indexOf(short element)

lastIndexOf

public int lastIndexOf(short element)

listIterator

public ShortListIterator listIterator()

listIterator

public ShortListIterator listIterator(int index)

removeElementAt

public short removeElementAt(int index)

set

public short set(int index, short element)

subList

public ShortList subList(int fromIndex, int toIndex)
Copyright (c) 2002-2003 - Apache Software Foundation