Uses of Interface
edu.umd.cs.findbugs.classfile.IClassPath
-
Packages that use IClassPath 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.classfile A high-level abstraction layer for codebases, classes, and components of classes (methods, fields, instructions, etc.).edu.umd.cs.findbugs.classfile.impl Implementations of the interfaces in the edu.umd.cs.findbugs.classfile package: the core classes of the FindBugs classfile/classpath support layer. -
-
Uses of IClassPath in edu.umd.cs.findbugs
Fields in edu.umd.cs.findbugs declared as IClassPath Modifier and Type Field Description private IClassPath
FindBugs2. classPath
private IClassPath
NoClassesFoundToAnalyzeException. f_classPath
Methods in edu.umd.cs.findbugs that return IClassPath Modifier and Type Method Description private IClassPath
DiscoverSourceDirectories. buildClassPath(IClassPathBuilder builder, IClassFactory factory)
IClassPath
NoClassesFoundToAnalyzeException. getClassPath()
Gets the classpath this exception is about.Methods in edu.umd.cs.findbugs with parameters of type IClassPath Modifier and Type Method Description private java.lang.String
DiscoverSourceDirectories. findFullyQualifiedSourceFileName(IClassPath classPath, ClassDescriptor classDesc)
private java.util.List<java.lang.String>
DiscoverSourceDirectories. findFullyQualifiedSourceFileNames(IClassPathBuilder builder, IClassPath classPath)
Constructors in edu.umd.cs.findbugs with parameters of type IClassPath Constructor Description NoClassesFoundToAnalyzeException(IClassPath classPath)
Constructs anNoClassesFoundToAnalyze
on the passed classpath. -
Uses of IClassPath in edu.umd.cs.findbugs.classfile
Methods in edu.umd.cs.findbugs.classfile that return IClassPath Modifier and Type Method Description IClassPath
IClassFactory. createClassPath()
IClassPath
IAnalysisCache. getClassPath()
Get the classpath from which classes are loaded.Methods in edu.umd.cs.findbugs.classfile with parameters of type IClassPath Modifier and Type Method Description void
IClassPathBuilder. build(IClassPath classPath, IClassPathBuilderProgress progress)
Build the classpath.IAnalysisCache
IClassFactory. createAnalysisCache(IClassPath classPath, BugReporter errorLogger)
-
Uses of IClassPath in edu.umd.cs.findbugs.classfile.impl
Classes in edu.umd.cs.findbugs.classfile.impl that implement IClassPath Modifier and Type Class Description class
ClassPathImpl
Implementation of IClassPath.Fields in edu.umd.cs.findbugs.classfile.impl declared as IClassPath Modifier and Type Field Description private IClassPath
AnalysisCache. classPath
Methods in edu.umd.cs.findbugs.classfile.impl that return IClassPath Modifier and Type Method Description IClassPath
ClassFactory. createClassPath()
IClassPath
AnalysisCache. getClassPath()
Methods in edu.umd.cs.findbugs.classfile.impl with parameters of type IClassPath Modifier and Type Method Description void
ClassPathBuilder. build(IClassPath classPath, IClassPathBuilderProgress progress)
IAnalysisCache
ClassFactory. createAnalysisCache(IClassPath classPath, BugReporter errorLogger)
private void
ClassPathBuilder. locateCodebasesRequiredForAnalysis(IClassPath classPath, IClassPathBuilderProgress progress)
Make an effort to find the codebases containing any files required for analysis.private void
ClassPathBuilder. processWorkList(IClassPath classPath, java.util.LinkedList<ClassPathBuilder.WorkListItem> workList, IClassPathBuilderProgress progress)
Process classpath worklist items.private void
ClassPathBuilder. scanCodebase(IClassPath classPath, java.util.LinkedList<ClassPathBuilder.WorkListItem> workList, ClassPathBuilder.DiscoveredCodeBase discoveredCodeBase)
Scan given codebase in order to check the codebase for nested archives (adding any found to the worklist) build a list of class resources found in the codebaseConstructors in edu.umd.cs.findbugs.classfile.impl with parameters of type IClassPath Constructor Description AnalysisCache(IClassPath classPath, BugReporter errorLogger)
Constructor.
-