Package edu.umd.cs.findbugs.ba
Interface SourceFileDataSource
-
- All Known Implementing Classes:
FileSourceFileDataSource,ZipSourceFileDataSource
public interface SourceFileDataSourceA data source which can produce a stream for a source file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFullFileName()Get the full filename of the source file.java.net.URIgetFullURI()Get the full URI of the source file.longgetLastModified()java.io.InputStreamopen()Open an InputStream on the source file.
-
-
-
Method Detail
-
open
java.io.InputStream open() throws java.io.IOExceptionOpen an InputStream on the source file.- Throws:
java.io.IOException
-
getFullFileName
java.lang.String getFullFileName()
Get the full filename of the source file.
-
getFullURI
java.net.URI getFullURI()
Get the full URI of the source file.
-
getLastModified
long getLastModified()
-
-