Returns the list of CREOLE directories the system knows about (either pre-installed plugins in the plugins directory or CREOLE directories that have previously been loaded manually). @return a List of URLs.
()
| 1003 | * @return a {@link List} of {@link URL}s. |
| 1004 | */ |
| 1005 | public static Set<Plugin> getKnownPlugins() { |
| 1006 | Set<Plugin> plugins = new HashSet<Plugin>(); |
| 1007 | plugins.addAll(knownPlugins); |
| 1008 | plugins.addAll(PluginUpdateManager.getDefaultPlugins()); |
| 1009 | return plugins; |
| 1010 | } |
| 1011 | |
| 1012 | /** |
| 1013 | * Adds the plugin to the list of known plugins. |
no test coverage detected