/**
 * The Sequence interface specifies a sequence of elements that 
 * supports access to its elements by their ranks and positions.  The
 * sequence can be changed.
 *
 * @version     1.1    March 2, 2001
 * @author      Franck van Breugel
 */
public interface Sequence extends Vector, InspectableSequence, List
{
}
