package schedframe.scheduling.plugin.grid; import java.util.Properties; import eduni.simjava.Sim_event; import schedframe.exceptions.ModuleException; /** * * @author Marcin Krystek * */ public interface Module { public void init(Properties properties) throws ModuleException; public void dispose() throws ModuleException; public ModuleType getType(); }