return runtimeMode;
}
- /**
- * Retrieves the {@link PluginWrapper} that loaded the given class 'clazz'.
- */
+ @Override
public PluginWrapper whichPlugin(Class<?> clazz) {
ClassLoader classLoader = clazz.getClassLoader();
for (PluginWrapper plugin : resolvedPlugins) {
*/
public RuntimeMode getRuntimeMode();
+ /**
+ * Retrieves the {@link PluginWrapper} that loaded the given class 'clazz'.
+ */
+ public PluginWrapper whichPlugin(Class<?> clazz);
+
public void addPluginStateListener(PluginStateListener listener);
public void removePluginStateListener(PluginStateListener listener);
* * @return the system version
*/
public Version getSystemVersion();
+
}