Revision 190,
447 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package test.rewolucja.extensions; |
---|
2 | |
---|
3 | import java.util.Properties; |
---|
4 | |
---|
5 | import test.rewolucja.resources.test.Event; |
---|
6 | |
---|
7 | public interface Extension /*extends Module*/{ |
---|
8 | |
---|
9 | public boolean supportsEvent(Event event); |
---|
10 | |
---|
11 | //public void handleEvent(Sim_event ev); |
---|
12 | |
---|
13 | public void handleEvent(Event event); |
---|
14 | |
---|
15 | public void init(Properties properties) throws ExtensionException; |
---|
16 | |
---|
17 | public void dispose() throws ExtensionException; |
---|
18 | |
---|
19 | public ExtensionType getType(); |
---|
20 | } |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.