Added PluginManager.getPlugins()

This commit is contained in:
Dinnerbone 2011-01-11 20:58:01 +00:00
parent f87466c974
commit c3cd1d735f
2 changed files with 11 additions and 0 deletions

View File

@ -30,6 +30,13 @@ public interface PluginManager {
*/ */
public Plugin getPlugin(String name); public Plugin getPlugin(String name);
/**
* Gets a list of all currently loaded plugins
*
* @return Array of Plugins
*/
public Plugin[] getPlugins();
/** /**
* Checks if the given plugin is enabled or not * Checks if the given plugin is enabled or not
* *

View File

@ -136,6 +136,10 @@ public final class SimplePluginManager implements PluginManager {
return lookupNames.get(name); return lookupNames.get(name);
} }
public Plugin[] getPlugins() {
return plugins.toArray(new Plugin[0]);
}
/** /**
* Checks if the given plugin is enabled or not * Checks if the given plugin is enabled or not
* *