Created by tyy on 18-2-1. 每个子模块入口都需要继承的模块 模块入口类 配置在子模块 jar 包的 MANIFEST 配置中
| 25 | * 模块入口类 配置在子模块 jar 包的 MANIFEST 配置中 |
| 26 | */ |
| 27 | public interface Module { |
| 28 | |
| 29 | String START_MODE_ATTACH = "attach"; |
| 30 | String START_MODE_NORMAL = "normal"; |
| 31 | |
| 32 | String START_ACTION_INSTALL = "install"; |
| 33 | String START_ACTION_UNINSTALL = "uninstall"; |
| 34 | |
| 35 | void start(String mode, Instrumentation inst) throws Throwable; |
| 36 | |
| 37 | void release(String mode) throws Throwable; |
| 38 | |
| 39 | } |
no outgoing calls
no test coverage detected