summaryrefslogtreecommitdiff
path: root/java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java')
-rw-r--r--java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java86
1 files changed, 0 insertions, 86 deletions
diff --git a/java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java b/java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java
deleted file mode 100644
index a57211b60ead..000000000000
--- a/java/debugger/impl/src/com/intellij/debugger/actions/ToggleBreakpointEnabledAction.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * 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.
- */
-package com.intellij.debugger.actions;
-
-import com.intellij.debugger.DebuggerManagerEx;
-import com.intellij.debugger.engine.DebuggerUtils;
-import com.intellij.debugger.ui.breakpoints.Breakpoint;
-import com.intellij.debugger.ui.breakpoints.BreakpointManager;
-import com.intellij.openapi.actionSystem.AnAction;
-import com.intellij.openapi.actionSystem.AnActionEvent;
-import com.intellij.openapi.actionSystem.CommonDataKeys;
-import com.intellij.openapi.actionSystem.Presentation;
-import com.intellij.openapi.editor.Editor;
-import com.intellij.openapi.fileEditor.FileEditorManager;
-import com.intellij.openapi.project.Project;
-import com.intellij.psi.PsiDocumentManager;
-import com.intellij.psi.PsiFile;
-import org.jetbrains.annotations.Nullable;
-
-public class ToggleBreakpointEnabledAction extends AnAction {
-
- public void actionPerformed(AnActionEvent e) {
- final Project project = e.getData(CommonDataKeys.PROJECT);
- Breakpoint breakpoint = findBreakpoint(project);
- if (breakpoint != null) {
- final BreakpointManager breakpointManager = DebuggerManagerEx.getInstanceEx(project).getBreakpointManager();
- breakpointManager.setBreakpointEnabled(breakpoint, !breakpoint.isEnabled());
- }
- }
-
- @Nullable
- private static Breakpoint findBreakpoint(final Project project) {
- Editor editor = FileEditorManager.getInstance(project).getSelectedTextEditor();
- if(editor == null) {
- return null;
- }
- BreakpointManager manager = DebuggerManagerEx.getInstanceEx(project).getBreakpointManager();
- int offset = editor.getCaretModel().getOffset();
- return manager.findBreakpoint(editor.getDocument(), offset, null);
- }
-
- public void update(AnActionEvent event){
- final Presentation presentation = event.getPresentation();
- Project project = event.getData(CommonDataKeys.PROJECT);
- if (project == null) {
- presentation.setEnabled(false);
- return;
- }
-
- Editor editor = FileEditorManager.getInstance(project).getSelectedTextEditor();
- if (editor == null) {
- presentation.setEnabled(false);
- return;
- }
- PsiFile file = PsiDocumentManager.getInstance(project).getPsiFile(editor.getDocument());
- if (file == null) {
- presentation.setEnabled(false);
- return;
- }
-
- if (DebuggerUtils.isBreakpointAware(file)) {
- Breakpoint breakpoint = findBreakpoint(project);
- if (breakpoint == null) {
- presentation.setEnabled(false);
- return;
- }
- presentation.setEnabled(true);
- }
- else {
- presentation.setEnabled(false);
- }
- }
-}