Aggiunto graph

This commit is contained in:
2014-05-20 20:25:19 +02:00
parent 75199b5c96
commit 39d338efdf
6 changed files with 103 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
package graph;
import map.Map;
import position.Position;
/**
* An interface for a position that can be marked with an arbitrary
* number of decorations.
*
* @author Roberto Tamassia, Michael Goodrich
*/
public interface DecorablePosition<E> extends Position<E>, Map<Object,Object> {}
// no new methods needed -- this is a mixture of Position and Map.