Interface IJavaSourceLocation
-
- All Superinterfaces:
IAdaptable
- All Known Implementing Classes:
ArchiveSourceLocation
,DirectorySourceLocation
,JavaProjectSourceLocation
,PackageFragmentRootSourceLocation
@Deprecated public interface IJavaSourceLocation extends IAdaptable
Deprecated.In 3.0, the debug platform provides source lookup facilities that should be used in place of the Java source lookup support provided in 2.0. The new facilities provide a source lookup director that coordinates source lookup among a set of participants, searching a set of source containers. See the following packages:org.eclipse.debug.core.sourcelookup
andorg.eclipse.debug.core.sourcelookup.containers
. This interface has been replaced byorg.eclipse.debug.core.sourcelookup.ISourceContainer
.A repository of source code. A source location is capable of retrieving source elements.For example, a source location could be a project, zip/archive file, or a directory in the file system.
This interface is may be implemented by clients.
- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Object
findSourceElement(String name)
Deprecated.Returns an object representing the source code for a type with the specified name, ornull
if none could be found.String
getMemento()
Deprecated.Returns a memento for this source location from which this source location can be reconstructed.void
initializeFrom(String memento)
Deprecated.Initializes this source location from the given memento.-
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
-
-
-
-
Method Detail
-
findSourceElement
Object findSourceElement(String name) throws CoreException
Deprecated.Returns an object representing the source code for a type with the specified name, ornull
if none could be found. The name is a fully qualified type name, and may contain the '$' character when referring to inner types. For example,java.lang.String
. The source element returned is implementation specific - for example, a resource, a local file, a zip file entry, etc.- Parameters:
name
- fully qualified name of the type for which source is being searched for- Returns:
- source element
- Throws:
CoreException
- if an exception occurs while searching for the specified source element
-
getMemento
String getMemento() throws CoreException
Deprecated.Returns a memento for this source location from which this source location can be reconstructed.- Returns:
- a memento for this source location
- Throws:
CoreException
- if unable to create a memento
-
initializeFrom
void initializeFrom(String memento) throws CoreException
Deprecated.Initializes this source location from the given memento.- Parameters:
memento
- a memento generated by this source location- Throws:
CoreException
- if unable to initialize this source location
-
-