Platonos
Back to tutorials overviewTutorial 1 - Starting the Plugin Engine
The engine itself is very easy to start. You really only have one parameter that you need be concerned with.PluginEngine engine = new PluginEngine("TestEngine"); ListThis few lines of code is all it takes to start the engine.paths = new ArrayList (); File f = new File("plugins/TestPlugin"); paths.add(f); engine.scanForPlugins(paths);
Next tutorial Building a simple plugin