public interface EList<E>
extends java.util.List<E>
void move(int newPosition, E object)
newPosition
- the position of the object after the move.object
- the object to move.E move(int newPosition, int oldPosition)
newPosition
- the position of the object after the move.oldPosition
- the position of the object before the move.