package test.rewolucja.extensions; import java.util.Properties; import test.rewolucja.resources.test.Event; public interface Extension /*extends Module*/{ public boolean supportsEvent(Event event); //public void handleEvent(Sim_event ev); public void handleEvent(Event event); public void init(Properties properties) throws ExtensionException; public void dispose() throws ExtensionException; public ExtensionType getType(); }