| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ModuleStorage |
|
| 1.0;1 |
| 1 | package org.webslinger.modules; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | ||
| 5 | public interface ModuleStorage extends ModuleState { | |
| 6 | void init(ModuleState runtime) throws IOException; | |
| 7 | } |