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

Revision 190, 447 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.resources.test.Event;
6
7public 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.