Returns the so file for the specified library. Returns null if the library does not exist or if it's not backed by a file. @param soName Name of library to load @return File if library found; null if not. @throws IOException IOException
(String soName)
| 99 | * @throws IOException IOException |
| 100 | */ |
| 101 | @Nullable |
| 102 | protected File getSoFileByName(String soName) throws IOException { |
| 103 | return null; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Gets the full path of a library if it is found on this SoSource. |
no outgoing calls
no test coverage detected