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/ICSourceLocation.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/ICSourceLocation.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/ICSourceLocation.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/ICSourceLocation.java
deleted file mode 100644
index 9c94ee7c422..00000000000
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/ICSourceLocation.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- *(c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- *
- */
-package org.eclipse.cdt.debug.core.sourcelookup;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IAdaptable;
-
-/**
- *
- * A source location defines the location of a repository
- * of source code. A source location is capable of retrieving
- * source elements.
- * <p>
- * For example, a source location could be a project, zip/archive
- * file, or a directory in the file system.
- * </p>
- *
- * @since Sep 23, 2002
- */
-public interface ICSourceLocation extends IAdaptable
-{
- /**
- * Returns an object representing the source code
- * for a type with the specified name, or <code>null</code>
- * if none could be found. The source element
- * returned is implementation specific - for example, a
- * resource, a local file, a zip file entry, etc.
- *
- * @param name the name of the object for which source is being searched for
- *
- * @return source element
- * @exception CoreException if an exception occurs while searching for the specified source element
- */
- Object findSourceElement( String name ) throws CoreException;
-
- /**
- * Returns a memento for this source location from which this
- * source location can be reconstructed.
- *
- * @return a memento for this source location
- * @exception CoreException if unable to create a memento
- */
- public String getMemento() throws CoreException;
-
- /**
- * Initializes this source location from the given memento.
- *
- * @param memento a memento generated by this source location
- * @exception CoreException if unable to initialize this source
- * location
- */
- public void initializeFrom( String memento ) throws CoreException;
-}

Back to the top