Interface PluginFileSystemLookup
-
- All Known Implementing Classes:
AgentPluginsFilesLookup
,JarSearcherBase
,ServerPluginsFilesLookup
public interface PluginFileSystemLookup
Created 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 PluginInfo
loadPluginInfo(File pluginDir)
Try to load a plugin from specified locationvoid
loadPluginsFrom(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
(IncorrectPluginInfo
if there is no plugin in the directory or there was an error during parsing)
-
-