org.apache.commons.collections.primitives.decorators

Class BaseProxyIntList

abstract class BaseProxyIntList extends BaseProxyIntCollection implements IntList

Since: Commons Primitives 1.0

Version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $

Author: Rodney Waldhoff

Constructor Summary
protected BaseProxyIntList()
Method Summary
voidadd(int index, int element)
booleanaddAll(int index, IntCollection collection)
intget(int index)
protected IntCollectiongetProxiedCollection()
protected abstract IntListgetProxiedList()
intindexOf(int element)
intlastIndexOf(int element)
IntListIteratorlistIterator()
IntListIteratorlistIterator(int index)
intremoveElementAt(int index)
intset(int index, int element)
IntListsubList(int fromIndex, int toIndex)

Constructor Detail

BaseProxyIntList

protected BaseProxyIntList()

Method Detail

add

public void add(int index, int element)

addAll

public boolean addAll(int index, IntCollection collection)

get

public int get(int index)

getProxiedCollection

protected final IntCollection getProxiedCollection()

getProxiedList

protected abstract IntList getProxiedList()

indexOf

public int indexOf(int element)

lastIndexOf

public int lastIndexOf(int element)

listIterator

public IntListIterator listIterator()

listIterator

public IntListIterator listIterator(int index)

removeElementAt

public int removeElementAt(int index)

set

public int set(int index, int element)

subList

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