Uses of Class
edu.umd.cs.findbugs.Plugin
-
Packages that use Plugin Package Description edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany.edu.umd.cs.findbugs.plan -
-
Uses of Plugin in edu.umd.cs.findbugs
Methods in edu.umd.cs.findbugs that return Plugin Modifier and Type Method Description Plugin
DetectorFactory. getPlugin()
Get the Plugin that this Detector is part of.Plugin
PluginLoader. getPlugin()
Get the Plugin.Plugin
DetectorFactoryCollection. getPluginById(java.lang.String pluginId)
Get a Plugin by its unique id.Methods in edu.umd.cs.findbugs that return types with arguments of type Plugin Modifier and Type Method Description java.util.Iterator<Plugin>
DetectorFactoryCollection. pluginIterator()
Return an Iterator over all available Plugin objects.java.lang.Iterable<Plugin>
DetectorFactoryCollection. plugins()
Return an Iterable of all available Plugin objects.Methods in edu.umd.cs.findbugs with parameters of type Plugin Modifier and Type Method Description static int
BugRanker. findRank(BugPattern pattern, Plugin plugin, int priority)
Constructors in edu.umd.cs.findbugs with parameters of type Plugin Constructor Description DetectorFactory(Plugin plugin, java.lang.Class<?> detectorClass, boolean enabled, java.lang.String speed, java.lang.String reports, java.lang.String requireJRE)
Constructor. -
Uses of Plugin in edu.umd.cs.findbugs.plan
Methods in edu.umd.cs.findbugs.plan with parameters of type Plugin Modifier and Type Method Description void
ExecutionPlan. addPlugin(Plugin plugin)
Add a Plugin whose Detectors should be added to the execution plan.Constructors in edu.umd.cs.findbugs.plan with parameters of type Plugin Constructor Description ByInterfaceDetectorFactorySelector(Plugin plugin, java.lang.Class detectorInterface)
ReportingDetectorFactorySelector(Plugin plugin)
Constructor.SingleDetectorFactorySelector(Plugin plugin, java.lang.String className)
-