net.aditsu.util
public class SimpleList<T> extends Object implements Serializable
ArrayList-like class that supports only a few operations - add, get, set, truncate and copy| Constructor and Description |
|---|
SimpleList() |
SimpleList(int capacity) |
public SimpleList<T> copy()
public void add(T x)
public int getSize()
public T get(int i)
public void set(int i,
T x)
public void truncate(int size)