blob: ca323d4ad5284fa071abdb11b07b9b1a710e42c7 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Interface DebuggerActions
* @author Jeka
*/
package com.intellij.debugger.actions;
import com.intellij.debugger.ui.impl.DebuggerTreePanel;
import com.intellij.debugger.ui.impl.watch.DebuggerTree;
import com.intellij.xdebugger.impl.actions.XDebuggerActions;
import org.jetbrains.annotations.NonNls;
public interface DebuggerActions extends XDebuggerActions {
@NonNls String POP_FRAME = "Debugger.PopFrame";
@NonNls String EVALUATION_DIALOG_POPUP = "Debugger.EvaluationDialogPopup";
@NonNls String FRAME_PANEL_POPUP = "Debugger.FramePanelPopup";
@NonNls String INSPECT_PANEL_POPUP = "Debugger.InspectPanelPopup";
@NonNls String THREADS_PANEL_POPUP = "Debugger.ThreadsPanelPopup";
@NonNls String WATCH_PANEL_POPUP = "Debugger.WatchesPanelPopup";
@Deprecated @NonNls String DEBUGGER_TREE = DebuggerTree.DATA_KEY.getName();
@Deprecated @NonNls String DEBUGGER_TREE_PANEL = DebuggerTreePanel.DATA_KEY.getName();
@NonNls String REMOVE_WATCH = "Debugger.RemoveWatch";
@NonNls String NEW_WATCH = "Debugger.NewWatch";
@NonNls String EDIT_WATCH = "Debugger.EditWatch";
@NonNls String COPY_VALUE = "Debugger.CopyValue";
@NonNls String SET_VALUE = "Debugger.SetValue";
@NonNls String EDIT_FRAME_SOURCE = "Debugger.EditFrameSource";
@NonNls String EDIT_NODE_SOURCE = "Debugger.EditNodeSource";
@NonNls String REPRESENTATION_LIST = "Debugger.Representation";
@NonNls String CUSTOMIZE_VIEWS = "Debugger.CustomizeContextView";
@NonNls String CUSTOMIZE_THREADS_VIEW = "Debugger.CustomizeThreadsView";
@NonNls String INSPECT = "Debugger.Inspect";
@NonNls String EXPORT_THREADS = "ExportThreads";
@NonNls String DUMP_THREADS = "DumpThreads";
}