#include <List.h>
Public Member Functions | |
virtual | ~List () |
virtual void | add (jint index, E *e)=0 |
virtual bool | addAll (jint index, const Collection< E > &c)=0 |
virtual E * | get (jint index) const =0 throw (IndexOutOfBoundsException) |
virtual jint | indexOf (const E *e) const =0 |
virtual jint | lastIndexOf (const E *e) const =0 |
virtual ListIterator< E > * | listIterator (jint index=0)=0 throw (IndexOutOfBoundsException) |
virtual ListIterator< E > * | listIterator (jint index=0) const =0 throw (IndexOutOfBoundsException) |
virtual E * | remove (jint index)=0 |
virtual E * | set (jint index, E *e)=0 |
virtual beecrypt::util::List< E >::~List | ( | ) | [inline, virtual] |
virtual void beecrypt::util::List< E >::add | ( | jint | index, | |
E * | e | |||
) | [pure virtual] |
virtual bool beecrypt::util::List< E >::addAll | ( | jint | index, | |
const Collection< E > & | c | |||
) | [pure virtual] |
virtual E* beecrypt::util::List< E >::get | ( | jint | index | ) | const throw (IndexOutOfBoundsException) [pure virtual] |
virtual jint beecrypt::util::List< E >::indexOf | ( | const E * | e | ) | const [pure virtual] |
virtual jint beecrypt::util::List< E >::lastIndexOf | ( | const E * | e | ) | const [pure virtual] |
virtual ListIterator<E>* beecrypt::util::List< E >::listIterator | ( | jint | index = 0 |
) | const throw (IndexOutOfBoundsException) [pure virtual] |
virtual ListIterator<E>* beecrypt::util::List< E >::listIterator | ( | jint | index = 0 |
) | throw (IndexOutOfBoundsException) [pure virtual] |
virtual E* beecrypt::util::List< E >::remove | ( | jint | index | ) | [pure virtual] |
virtual E* beecrypt::util::List< E >::set | ( | jint | index, | |
E * | e | |||
) | [pure virtual] |