mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-56925: Remote debugging broken (linux, tomcat)
This commit is contained in:
@@ -16,13 +16,12 @@
|
||||
package com.intellij.execution.ui;
|
||||
|
||||
import com.intellij.openapi.ui.ComponentContainer;
|
||||
|
||||
import javax.swing.*;
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
|
||||
/**
|
||||
* @author Eugene Zhuravlev
|
||||
* Date: Apr 20, 2004
|
||||
*/
|
||||
public interface ExecutionConsole extends ComponentContainer {
|
||||
|
||||
@NonNls String CONSOLE_CONTENT_ID = "ConsoleContent";
|
||||
}
|
||||
|
||||
@@ -157,7 +157,7 @@ public class RunContentBuilder implements LogConsoleManager, Disposable {
|
||||
}
|
||||
}
|
||||
|
||||
final Content consoleContent = ui.createContent("Console", console.getComponent(), "Console",
|
||||
final Content consoleContent = ui.createContent(ExecutionConsole.CONSOLE_CONTENT_ID, console.getComponent(), "Console",
|
||||
IconLoader.getIcon("/debugger/console.png"),
|
||||
console.getPreferredFocusableComponent());
|
||||
|
||||
|
||||
@@ -15,11 +15,12 @@
|
||||
*/
|
||||
package com.intellij.debugger.ui;
|
||||
|
||||
import com.intellij.execution.ui.ExecutionConsole;
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
|
||||
public interface DebuggerContentInfo {
|
||||
|
||||
@NonNls String CONSOLE_CONTENT = "ConsoleContent";
|
||||
@NonNls String CONSOLE_CONTENT = ExecutionConsole.CONSOLE_CONTENT_ID;
|
||||
@NonNls String THREADS_CONTENT = "ThreadsContent";
|
||||
@NonNls String VARIABLES_CONTENT = "VariablesContent";
|
||||
@NonNls String FRAME_CONTENT = "FrameContent";
|
||||
|
||||
Reference in New Issue
Block a user