Files
unisa_strutture_dati_2013_2014/position/Position.java

15 lines
313 B
Java

package position;
/**
* An interface for a position, which is a holder object storing a
* single element.
* @author Roberto Tamassia, Michael Goodrich
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public interface Position<E> {
E element();
}