Commit 3a328b09 authored by Ryan Graham's avatar Ryan Graham Committed by ryang

updated guide to match plugin interface (thanks Guss der Kinderen)

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2825 b35dd754-fafc-0310-a699-88a17e54d16e
parent 30c3abfb
...@@ -128,11 +128,11 @@ import java.io.File; ...@@ -128,11 +128,11 @@ import java.io.File;
*/ */
public class ExamplePlugin implements Plugin { public class ExamplePlugin implements Plugin {
public void initialize(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
<span class="comment">// Your code goes here</span> <span class="comment">// Your code goes here</span>
} }
public void destroy() { public void destroyPlugin() {
<span class="comment">// Your code goes here</span> <span class="comment">// Your code goes here</span>
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment