mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
14 lines
378 B
Java
14 lines
378 B
Java
/*
|
|
* @author: Eugene Zhuravlev
|
|
* Date: Nov 12, 2002
|
|
* Time: 3:25:10 PM
|
|
*/
|
|
package com.intellij.debugger;
|
|
|
|
public interface HelpID {
|
|
String LINE_BREAKPOINTS = "debugging.lineBreakpoint";
|
|
String METHOD_BREAKPOINTS = "debugging.methodBreakpoint";
|
|
String EXCEPTION_BREAKPOINTS = "debugging.exceptionBreakpoint";
|
|
String FIELD_WATCHPOINTS = "debugging.fieldWatchpoint";
|
|
}
|