Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java
index a8da10d89..b83810354 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/AccessWatchpointToggleAction.java
@@ -21,25 +21,16 @@ import org.eclipse.debug.core.model.IWatchpoint;
*/
public class AccessWatchpointToggleAction extends ModifyWatchpointAction {
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.ModifyWatchpointAction#isEnabled(org.eclipse.debug.core.model.IWatchpoint)
- */
@Override
protected boolean isEnabled(IWatchpoint watchpoint) {
return watchpoint.supportsAccess();
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.ModifyWatchpointAction#toggleWatchpoint(org.eclipse.debug.core.model.IWatchpoint, boolean)
- */
@Override
protected void toggleWatchpoint(IWatchpoint watchpoint, boolean b) throws CoreException {
watchpoint.setAccess(b);
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.ModifyWatchpointAction#isChecked(org.eclipse.debug.core.model.IWatchpoint)
- */
@Override
protected boolean isChecked(IWatchpoint watchpoint) {
try {

Back to the top