-
- All Known Implementing Classes:
CoreFileResolver
,ZipFileResolver
public interface ILibraryResolver
Object for resolving libraries
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Instructs the resolver to dispose of any resources that it has created as part of the resolution process.LibraryDataSource
getLibrary(String fileName)
Equivalent to getLibrary(fileName, false);LibraryDataSource
getLibrary(String fileName, boolean silent)
-
-
-
Method Detail
-
getLibrary
LibraryDataSource getLibrary(String fileName, boolean silent) throws FileNotFoundException
- Parameters:
fileName
- Path of the modulesilent
- If true, suppress log messages if file cannot be found- Returns:
- File handle on library on local system
- Throws:
FileNotFoundException
-
getLibrary
LibraryDataSource getLibrary(String fileName) throws FileNotFoundException
Equivalent to getLibrary(fileName, false);- Parameters:
fileName
- Path of the module- Returns:
- File handle on library on local system
- Throws:
FileNotFoundException
-
dispose
void dispose()
Instructs the resolver to dispose of any resources that it has created as part of the resolution process.
-
-