/**
 * The Tree interface specifies an ordered tree the elements of which
 * are associated with positions.
 *
 * @version     1.4    March 4, 2001
 * @author      Franck van Breugel
 */
public interface Tree extends PositionalContainer, InspectableTree
{
}
