/** A position within a container object (e.g., a vector, list, or tree). * This was introduced in section 5.2 of the textbook. * * Some implementations of this interface may also support other * methods, e.g., to change the element or find related elements in * the data structure. */ public interface Position { public Object element(); }