Interface PluginFileSystemLookup
-
- All Known Implementing Classes:
AgentPluginsFilesLookup,JarSearcherBase,ServerPluginsFilesLookup
public interface PluginFileSystemLookupCreated by IntelliJ IDEA. User: Eugene.Petrenko Date: 16.04.2008 Time: 20:38:54
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PluginInfoloadPluginInfo(File pluginDir)Try to load a plugin from specified locationvoidloadPluginsFrom(PluginInfosBuilder callback)Load all plugins from all default locations
-
-
-
Method Detail
-
loadPluginsFrom
void loadPluginsFrom(@NotNull PluginInfosBuilder callback)Load all plugins from all default locations- Parameters:
callback- will get foundPluginInfo
-
loadPluginInfo
@NotNull PluginInfo loadPluginInfo(@NotNull File pluginDir)
Try to load a plugin from specified location- Parameters:
pluginDir- Directory to load the plugin from- Returns:
- Found
PluginInfo(IncorrectPluginInfoif there is no plugin in the directory or there was an error during parsing)
-
-