use of com.intellij.execution.ui.RunContentManagerImpl in project intellij-community by JetBrains.
the class ExecutionManagerImpl method getContentManager.
@NotNull
@Override
public RunContentManager getContentManager() {
if (myContentManager == null) {
myContentManager = new RunContentManagerImpl(myProject, DockManager.getInstance(myProject));
Disposer.register(myProject, myContentManager);
}
return myContentManager;
}
Aggregations