source: branches/2.2/jabberit_messenger/java_source/src/nu/fw/jeti/plugins/Plugins.java @ 3102

Revision 3102, 827 bytes checked in by amuller, 14 years ago (diff)

Ticket #986 - Efetuado merge para o Branch 2.2( atualizacao do modulo)

  • Property svn:executable set to *
Line 
1package nu.fw.jeti.plugins;
2
3/**
4 * @author E.S. de Boer
5 * @version 1.0
6 * An Jeti plugin should be called Plugin and defined in a subpackage of nu.fw.jeti.plugins
7 * and have a constructor Plugin(nu.fw.jeti.backend Backend backend) that is called to initialize the plugin
8 *
9 *
10 *
11 */
12public interface Plugins
13{
14
15        //back to interface??
16        //String getName(){return NAME;}
17        //abstract String getDescription();
18        //abstract String getVersion();
19        // public void unload(Backend backend);
20        //remove??
21        //public String[] getInfo(){return null;}
22        //TODO change to unload
23       
24        /**
25         * Perform unload cleaning of loaded plugins.
26         * Please make sure that your plugin instances
27         * are not referenced anymore after this method
28         */
29         public void unload();
30
31}
32/*
33 * Overrides for emacs
34 * Local variables:
35 * tab-width: 4
36 * End:
37 */
Note: See TracBrowser for help on using the repository browser.