Search in sources :

Example 1 with RunContentManagerImpl

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;
}
Also used : RunContentManagerImpl(com.intellij.execution.ui.RunContentManagerImpl) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

RunContentManagerImpl (com.intellij.execution.ui.RunContentManagerImpl)1 NotNull (org.jetbrains.annotations.NotNull)1