MCPcopy Create free account
hub / github.com/GateNLP/gate-core / getKnownPlugins

Method getKnownPlugins

src/main/java/gate/Gate.java:1005–1010  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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.

Callers 4

writeUserConfigMethod · 0.95
getPluginsMethod · 0.95
reInitMethod · 0.95
filterRowsMethod · 0.95

Calls 2

getDefaultPluginsMethod · 0.95
addAllMethod · 0.45

Tested by

no test coverage detected