source: xssim/trunk/src/schedframe/scheduling/plugin/grid/Module.java @ 104

Revision 104, 372 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling.plugin.grid;
2
3import java.util.Properties;
4
5import eduni.simjava.Sim_event;
6
7import schedframe.exceptions.ModuleException;
8
9/**
10 *
11 * @author Marcin Krystek
12 *
13 */
14public interface Module {
15
16        public void init(Properties properties) throws ModuleException;
17       
18        public void dispose() throws ModuleException;
19       
20        public ModuleType getType();
21       
22}
Note: See TracBrowser for help on using the repository browser.