package username.lists; /** * Something that represents positions in vector-based lists. * * @author Samuel A. Rebelsky * @version 1.0 of April 2006 */ class VectorPosition implements Position { /** The position in a Vector is just an integer. */ int pos; public VectorPosition(int _pos) { this.pos = _pos; } } // class VectorPosition