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.AutoCloseableA repository of source files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()booleancontains(java.lang.String fileName)SourceFileDataSourcegetDataSource(java.lang.String fileName)booleanisPlatformDependent()
-
-
-
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:
closein interfacejava.lang.AutoCloseable- Throws:
java.io.IOException
-
-