Platonos

Back to tutorials overview

Tutorial 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");

List paths = new ArrayList();
File f = new File("plugins/TestPlugin");
paths.add(f);

engine.scanForPlugins(paths);
This few lines of code is all it takes to start the engine.

Next tutorial Building a simple plugin