Revision 104,
372 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling.plugin.grid; |
---|
2 | |
---|
3 | import java.util.Properties; |
---|
4 | |
---|
5 | import eduni.simjava.Sim_event; |
---|
6 | |
---|
7 | import schedframe.exceptions.ModuleException; |
---|
8 | |
---|
9 | /** |
---|
10 | * |
---|
11 | * @author Marcin Krystek |
---|
12 | * |
---|
13 | */ |
---|
14 | public 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.