1 /*2 * Distributor.java3 *4 * Created on 10. duben 2002, 14:075 */6 7 package SOFA.Connector.EEG.Types;8 9 /**10 *11 * @author ghort12 * @version 13 */14 public interface Distributor extends SOFA.Connector.EEG.ConnectorManagableInterface {15 void link(Object listener) throws SOFA.Connector.LinkException;16 void unlink(Object listener) throws SOFA.Connector.LinkException;17 }18 19