1 package cz.cuni.amis.pogamut.base.communication.connection;
2
3 /**
4 * Marker interface - further descendants should describe the connection end,
5 * where the implemenetor of IWorldConnection should connect to (e.g. ISocketWorldAddress
6 * contains getHost(), getPort())
7 *
8 * @author Jimmy
9 */
10 public interface IWorldConnectionAddress {
11
12 }