Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorJohn Cortell2008-02-14 20:46:48 +0000
committerJohn Cortell2008-02-14 20:46:48 +0000
commitab1ad42fd74e170cdda358429fe9eba5e2517660 (patch)
treeac56ee73ea3261dc48a1adfaaf375e87111a74e9 /debug
parent60dd429b5ce0d8cfd6451b826ab5296add599ef8 (diff)
downloadorg.eclipse.cdt-ab1ad42fd74e170cdda358429fe9eba5e2517660.tar.gz
org.eclipse.cdt-ab1ad42fd74e170cdda358429fe9eba5e2517660.tar.xz
org.eclipse.cdt-ab1ad42fd74e170cdda358429fe9eba5e2517660.zip
Fixed way in which the new Add Watchpoint action gets its context from the memory rendering.
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICMemorySelection.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICMemorySelection.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICMemorySelection.java
deleted file mode 100644
index 8415a80c89f..00000000000
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/ICMemorySelection.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Freescale Semiconductor and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Freescale Semiconductor - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.debug.ui;
-
-import java.math.BigInteger;
-
-import org.eclipse.debug.core.model.IMemoryBlockExtension;
-
-/**
- * Defines an interface that allows the implementor to specify the currently
- * selected memory block.
- */
-public interface ICMemorySelection {
-
- /**
- * @return the block of memory that contains the selection
- */
- IMemoryBlockExtension getContainingBlock();
-
- /**
- * @return the beginning address of the selection
- */
- BigInteger getAddress();
-
- /**
- * @return the length in units of the selection
- */
- BigInteger getUnits();
-
-}

Back to the top