Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/IDisassemblyStorage.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/IDisassemblyStorage.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/IDisassemblyStorage.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/IDisassemblyStorage.java
deleted file mode 100644
index 809c7fd6c61..00000000000
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/IDisassemblyStorage.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- *(c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- *
- */
-
-package org.eclipse.cdt.debug.core.sourcelookup;
-
-import org.eclipse.core.resources.IStorage;
-import org.eclipse.debug.core.model.IDebugTarget;
-
-/**
- * Defines methods specific to disassembly.
- *
- * @since: Oct 8, 2002
- */
-public interface IDisassemblyStorage extends IStorage
-{
- /**
- * Returns the debug target of this disassembly.
- *
- * @return the debug target of this disassembly
- */
- IDebugTarget getDebugTarget();
-
- /**
- * Returns whether this storage contains the instructions at given address.
- *
- * @param address - an address
- * @return whether this storage contains the instructions at given address
- */
- boolean containsAddress( long address );
-
- /**
- * Returns the line number for given address.
- * @param address - an address
- * @return the line number for given address
- */
- int getLineNumber( long address ) ;
-
- /**
- * Returns the address of instruction at given line.
- * @param lineNumber - a line number
- * @return the address of instruction at given line
- */
- long getAddress( int lineNumber ) ;
-}

Back to the top