source: xssim/trunk/src/test/rewolucja/extensions/Extension.java @ 104

Revision 104, 522 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.extensions;
2
3import java.util.Properties;
4
5import test.rewolucja.energy.EnergyEvent;
6import test.rewolucja.resources.test.Event;
7
8import eduni.simjava.Sim_event;
9
10public 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.