/**
 * The Position interface specifies a position consisting of the element
 * stored in the position.
 *
 * @version     1.3    May 16, 2000
 * @author      Franck van Breugel
 */
public interface Position 
{
    /**
     * Returns the element of this position.
     * @return The element of this position.
     */
    public Object element();
}
