1 package nl.tudelft.goal.ut2004.visualizer.panels.connection;
2
3 import java.net.URI;
4
5 public interface IConnect {
6
7 /**
8 * Connects to the given URI.
9 *
10 * @param uri
11 */
12 void connect(URI uri);
13
14 }