1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-17 12:25:20 +00:00

Write disabled / enabled plugins to the configuration.

This commit is contained in:
2017-08-02 19:01:01 -07:00
parent 27ffa4c78f
commit 8ae9b2fcbd
4 changed files with 33 additions and 29 deletions

View File

@@ -185,7 +185,7 @@ public class PluginManager {
*/
public void reload() {
unload();
reload();
load();
}
/**
@@ -233,4 +233,12 @@ public class PluginManager {
listeners.remove(listener);
}
/**
* Gets a list of all the plugin class files that have been
* added to the plugin manager.
* @return the list of all the added plugin classes.
*/
public Set<Class<?>> getLoadedPluginClasses() {
return loadedPluginClasses;
}
}