MCPcopy Create free account
hub / github.com/ddf-project/DDF / getManager

Method getManager

core/src/main/java/io/ddf/DDF.java:322–325  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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;

Callers 12

initializeMethod · 0.95
getNamespaceMethod · 0.95
validateNameMethod · 0.95
getEngineMethod · 0.95
getEngineTypeMethod · 0.95
sqlMethod · 0.95
sqlTypedMethod · 0.95
sql2ddfMethod · 0.95
unpersistMethod · 0.95
createDDFWrapperMethod · 0.95
duplicateMethod · 0.95
addDDFMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected