Package plugin
Class PluginLoader
- java.lang.Object
-
- plugin.PluginLoader
-
public class PluginLoader extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static Map<String,Class<AbstractController>>
controller_plugins
static Map<String,Class<core.AbstractModel>>
model_plugins
-
Constructor Summary
Constructors Constructor Description PluginLoader()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractController
get_controller_instance(String plugin_name, Scenario scenario, Controller jaxb_controller)
static core.AbstractModel
get_model_instance(Model jaxb_model, StochasticProcess process)
static void
load_plugins(Plugins plugins)
-
-
-
Method Detail
-
load_plugins
public static void load_plugins(Plugins plugins) throws OTMException
- Throws:
OTMException
-
get_controller_instance
public static AbstractController get_controller_instance(String plugin_name, Scenario scenario, Controller jaxb_controller) throws OTMException
- Throws:
OTMException
-
get_model_instance
public static core.AbstractModel get_model_instance(Model jaxb_model, StochasticProcess process) throws OTMException
- Throws:
OTMException
-
-