1 2 3 4 5 6 7
package jrummikub.util; public interface IEvent { public void add(IListener listener); public void remove(IListener listener); }