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

       @return The element of this position.
    */
    public Object element();
}
