Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java')
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java
index a4dff3fc79a..071f4073c94 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/tools/DebugDump.java
@@ -90,11 +90,6 @@ public class DebugDump implements IDebugEntryRequestor {
return sb.toString();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#enterCompilationUnit(java.lang.String, long)
- */
@Override
public void enterCompilationUnit(String name, long address) {
write("/* Enter Compilation Unit " + name + " address " + Long.toHexString(address) + " */"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
@@ -102,11 +97,6 @@ public class DebugDump implements IDebugEntryRequestor {
currentCU = name;
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#exitCompilationUnit(long)
- */
@Override
public void exitCompilationUnit(long address) {
write("/* Exit Compilation Unit "); //$NON-NLS-1$
@@ -119,11 +109,6 @@ public class DebugDump implements IDebugEntryRequestor {
currentCU = null;
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#enterInclude(java.lang.String)
- */
@Override
public void enterInclude(String name) {
write("#include \"" + name + "\" "); //$NON-NLS-1$ //$NON-NLS-2$
@@ -131,22 +116,12 @@ public class DebugDump implements IDebugEntryRequestor {
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#exitInclude()
- */
@Override
public void exitInclude() {
//write("/* Exit Include */");
//newLine();newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#enterFunction(java.lang.String, int, boolean, long)
- */
@Override
public void enterFunction(String name, DebugType type, boolean isGlobal, long address) {
write("/* Func:" + name + " address " + Long.toHexString(address) + " */"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
@@ -158,11 +133,6 @@ public class DebugDump implements IDebugEntryRequestor {
paramCount = 0;
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#exitFunction(long)
- */
@Override
public void exitFunction(long address) {
if (paramCount > -1) {
@@ -181,11 +151,6 @@ public class DebugDump implements IDebugEntryRequestor {
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#enterCodeBlock(long)
- */
@Override
public void enterCodeBlock(long offset) {
if (paramCount > -1) {
@@ -198,11 +163,6 @@ public class DebugDump implements IDebugEntryRequestor {
bracket++;
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#exitCodeBlock(long)
- */
@Override
public void exitCodeBlock(long offset) {
bracket--;
@@ -210,11 +170,6 @@ public class DebugDump implements IDebugEntryRequestor {
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptStatement(int, long)
- */
@Override
public void acceptStatement(int line, long address) {
if (paramCount > -1) {
@@ -229,45 +184,24 @@ public class DebugDump implements IDebugEntryRequestor {
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptIntegerConst(java.lang.String, long)
- */
@Override
public void acceptIntegerConst(String name, int value) {
write("const int " + name + " = " + value + ";"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptFloatConst(java.lang.String, double)
- */
@Override
public void acceptFloatConst(String name, double value) {
write("const float " + name + " = " + value + ";"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptTypeConst(java.lang.String,
- * org.eclipse.cdt.utils.debug.DebugType, int)
- */
@Override
public void acceptTypeConst(String name, DebugType type, int value) {
write("const " + type.toString() + " " + name + " = " + value + ";"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptParameter(java.lang.String, int, int, long)
- */
@Override
public void acceptParameter(String name, DebugType type, DebugParameterKind kind, long offset) {
if (paramCount > 0) {
@@ -277,32 +211,16 @@ public class DebugDump implements IDebugEntryRequestor {
write(type.toString() + " " + name + "/* " + offset + " */"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptVariable(java.lang.String, int, int, long)
- */
@Override
public void acceptVariable(String name, DebugType type, DebugVariableKind kind, long address) {
write(printTabs() + type.toString() + " " + name + ";" + "/* " + Long.toHexString(address) + " */"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
newLine();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptCaughtException(java.lang.String,
- * org.eclipse.cdt.utils.debug.DebugType, long)
- */
@Override
public void acceptCaughtException(String name, DebugType type, long address) {
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.cdt.utils.debug.IDebugEntryRequestor#acceptTypeDef(java.lang.String, org.eclipse.cdt.utils.debug.DebugType)
- */
@Override
public void acceptTypeDef(String name, DebugType type) {
if (!name.equals(type.toString())) {

Back to the top