Revision 104,
522 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.energy.EnergyEvent; |
---|
6 | import test.rewolucja.resources.test.Event; |
---|
7 | |
---|
8 | import eduni.simjava.Sim_event; |
---|
9 | |
---|
10 | public interface Extension /*extends Module*/{ |
---|
11 | |
---|
12 | public boolean supportsEvent(Event event); |
---|
13 | |
---|
14 | //public void handleEvent(Sim_event ev); |
---|
15 | |
---|
16 | public void handleEvent(Event event); |
---|
17 | |
---|
18 | public void init(Properties properties) throws ExtensionException; |
---|
19 | |
---|
20 | public void dispose() throws ExtensionException; |
---|
21 | |
---|
22 | public ExtensionType getType(); |
---|
23 | } |
---|
24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.