source: DCWoRMS/branches/coolemall/src/schedframe/scheduling/plugin/Module.java @ 1396

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