Returns the previously set manager, or sets it to a dummy manager if null. We provide a "dummy" DDF Manager in case our manager is not set for some reason. (This may lead to nothing good). @return
()
| 320 | * @return |
| 321 | */ |
| 322 | public DDFManager getManager() { |
| 323 | if (mManager == null) mManager = sDummyManager; |
| 324 | return mManager; |
| 325 | } |
| 326 | |
| 327 | public void setManager(DDFManager DDFManager) { |
| 328 | this.mManager = DDFManager; |
no outgoing calls
no test coverage detected