Load a file. @param entryName File's archive entry name. @param value File's raw value. @return Addition was a success.
(String entryName, byte[] value)
| 140 | * @return Addition was a success. |
| 141 | */ |
| 142 | public boolean onFile(String entryName, byte[] value) { |
| 143 | for (LoadInterceptorPlugin interceptor : PluginsManager.getInstance().ofType(LoadInterceptorPlugin.class)) { |
| 144 | value = interceptor.interceptFile(entryName, value); |
| 145 | } |
| 146 | files.put(entryName, value); |
| 147 | return true; |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * @param entry |
no test coverage detected