Package edu.umd.cs.findbugs.ba
Interface SourceFinder.SourceRepository
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
SourceFinder.BlockingSourceRepository
,SourceFinder.DirectorySourceRepository
,SourceFinder.InMemorySourceRepository
,SourceFinder.ZipSourceRepository
- Enclosing class:
- SourceFinder
private static interface SourceFinder.SourceRepository extends java.lang.AutoCloseable
A repository of source files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
boolean
contains(java.lang.String fileName)
SourceFileDataSource
getDataSource(java.lang.String fileName)
boolean
isPlatformDependent()
-
-
-
Method Detail
-
contains
boolean contains(java.lang.String fileName)
-
isPlatformDependent
boolean isPlatformDependent()
-
getDataSource
SourceFileDataSource getDataSource(java.lang.String fileName)
-
close
void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.io.IOException
-
-