source: trunk/jabberit_messenger/java_source/src/nu/fw/jeti/plugins/Plugins.java @ 1001

Revision 1001, 835 bytes checked in by alexandrecorreia, 15 years ago (diff)

Ticket #552 - Inclusão do projeto Java referente ao applet do módulo.

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
18        //abstract String getDescription();
19
20        //abstract String getVersion();
21
22       
23        // public void unload(Backend backend);
24       
25        //remove??
26        //public String[] getInfo(){return null;}
27//TODO change to unload
28       
29        /**
30         * Perform unload cleaning of loaded plugins.
31         * Please make sure that your plugin instances
32         * are not referenced anymore after this method
33         */
34         public void unload();
35
36         
37}
38/*
39 * Overrides for emacs
40 * Local variables:
41 * tab-width: 4
42 * End:
43 */
Note: See TracBrowser for help on using the repository browser.