> Could just me eclipse freaking up but i got this:
>
> protected PluginManager pm;
> protected PluginManagerUtil pmu;
> protected PluginInformation pi;
>
> public ModuleManager() {
> pm = PluginManagerFactory.createPluginManager();
> pm.addPluginsFrom(ClassURI.CLASSPATH);
> pmu = new PluginManagerUtil(pm);
> pi = new PluginInformation(pm); (test 1 failed - Cannot instantiate
Try:
pi = pm.getPlugin(PluginInformation.class);