Interface PluginInfoByClassProvider
-
- All Known Subinterfaces:
PluginInfoSearcher
- All Known Implementing Classes:
HierarchicalPluginStandaloneClassLoaderImpl,PluginInfoSearcherImpl,PluginsSharedClassLoader,PluginStandaloneClassLoader
public interface PluginInfoByClassProviderSearches for all loaded by classloader classes to find plugin info object for that class This interface is supposed to be implemented by classloader- Since:
- TC 4.1
- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PluginInfofindPluginInfoByClass(Class<?> clazz)This method is designed to findPluginInfoobject for class.
-
-
-
Method Detail
-
findPluginInfoByClass
@Nullable PluginInfo findPluginInfoByClass(@NotNull Class<?> clazz)
This method is designed to findPluginInfoobject for class.- Parameters:
clazz- class to search in classloader- Returns:
PluginInfofor pluing iff it's class was loaded by that classloader or null otherwise
-
-