Package org.eclipse.jdt.debug.ui
Class JavaUISourceLocator
java.lang.Object
org.eclipse.jdt.debug.ui.JavaUISourceLocator
- All Implemented Interfaces:
org.eclipse.debug.core.model.IPersistableSourceLocator
,org.eclipse.debug.core.model.ISourceLocator
@Deprecated
public class JavaUISourceLocator
extends Object
implements org.eclipse.debug.core.model.IPersistableSourceLocator
Deprecated.
A source locator that prompts the user to find source when source cannot
be found on the current source lookup path.
This class is intended to be instantiated.
- Since:
- 2.0
- Restriction:
- This class is not intended to be sub-classed by clients.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Deprecated.Launch configuration attribute indicating that this source locator should locate all source elements that correspond to a stack frame, rather than the first match.static final String
Deprecated.Identifier for the 'Prompting Java Source Locator' extension (value"org.eclipse.jdt.debug.ui.javaSourceLocator"
). -
Constructor Summary
ConstructorDescriptionDeprecated.Constructs an empty source locator.JavaUISourceLocator
(IJavaProject project) Deprecated.Constructs a source locator that searches for source in the given Java project, and all of its required projects, as specified by its build path or default source lookup settings.JavaUISourceLocator
(IJavaProject[] projects, boolean includeRequired) Deprecated.Constructs a new source locator that looks in the specified project for source, and required projects, ifincludeRequired
istrue
. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.getSourceElement
(org.eclipse.debug.core.model.IStackFrame stackFrame) Deprecated.Deprecated.Returns the locations that this source locator is currently searching, in the order that they are searched.void
initializeDefaults
(org.eclipse.debug.core.ILaunchConfiguration configuration) Deprecated.void
initializeFromMemento
(String memento) Deprecated.boolean
Deprecated.Returns whether this source locator is configured to search for all source elements that correspond to a stack frame.void
setFindAllSourceElement
(boolean findAll) Deprecated.Sets whether this source locator is configured to search for all source elements that correspond to a stack frame, or the first match.void
setSourceLocations
(IJavaSourceLocation[] locations) Deprecated./** Sets the locations that will be searched, in the order to be searched.
-
Field Details
-
ID_PROMPTING_JAVA_SOURCE_LOCATOR
Deprecated.Identifier for the 'Prompting Java Source Locator' extension (value"org.eclipse.jdt.debug.ui.javaSourceLocator"
). -
ATTR_FIND_ALL_SOURCE_ELEMENTS
Deprecated.Launch configuration attribute indicating that this source locator should locate all source elements that correspond to a stack frame, rather than the first match. Default value isfalse
.- Since:
- 2.1
-
-
Constructor Details
-
JavaUISourceLocator
public JavaUISourceLocator()Deprecated.Constructs an empty source locator. -
JavaUISourceLocator
public JavaUISourceLocator(IJavaProject[] projects, boolean includeRequired) throws org.eclipse.core.runtime.CoreException Deprecated.Constructs a new source locator that looks in the specified project for source, and required projects, ifincludeRequired
istrue
.- Parameters:
projects
- the projects in which to look for sourceincludeRequired
- whether to look in required projects as well- Throws:
org.eclipse.core.runtime.CoreException
- if the underlyingJavaSourceLocator
fails to be created
-
JavaUISourceLocator
Deprecated.Constructs a source locator that searches for source in the given Java project, and all of its required projects, as specified by its build path or default source lookup settings.- Parameters:
project
- Java project- Throws:
org.eclipse.core.runtime.CoreException
- if unable to read the project's build path
-
-
Method Details
-
getSourceElement
Deprecated.- Specified by:
getSourceElement
in interfaceorg.eclipse.debug.core.model.ISourceLocator
- See Also:
-
ISourceLocator.getSourceElement(IStackFrame)
-
getMemento
Deprecated.- Specified by:
getMemento
in interfaceorg.eclipse.debug.core.model.IPersistableSourceLocator
- Throws:
org.eclipse.core.runtime.CoreException
- See Also:
-
IPersistableSourceLocator.getMemento()
-
initializeDefaults
public void initializeDefaults(org.eclipse.debug.core.ILaunchConfiguration configuration) throws org.eclipse.core.runtime.CoreException Deprecated.- Specified by:
initializeDefaults
in interfaceorg.eclipse.debug.core.model.IPersistableSourceLocator
- Throws:
org.eclipse.core.runtime.CoreException
- See Also:
-
IPersistableSourceLocator.initializeDefaults(ILaunchConfiguration)
-
initializeFromMemento
Deprecated.- Specified by:
initializeFromMemento
in interfaceorg.eclipse.debug.core.model.IPersistableSourceLocator
- Throws:
org.eclipse.core.runtime.CoreException
- See Also:
-
IPersistableSourceLocator.initializeFromMemento(String)
-
getSourceLocations
Deprecated.Returns the locations that this source locator is currently searching, in the order that they are searched.- Returns:
- the locations that this source locator is currently searching, in the order that they are searched
-
setSourceLocations
Deprecated./** Sets the locations that will be searched, in the order to be searched.- Parameters:
locations
- the locations that will be searched, in the order to be searched
-
isFindAllSourceElements
public boolean isFindAllSourceElements()Deprecated.Returns whether this source locator is configured to search for all source elements that correspond to a stack frame. Whenfalse
is returned, searching stops on the first match. If there is more than one source element that corresponds to a stack frame, the user is prompted to choose a source element to open.- Returns:
- whether this source locator is configured to search for all source elements that correspond to a stack frame
- Since:
- 2.1
-
setFindAllSourceElement
public void setFindAllSourceElement(boolean findAll) Deprecated.Sets whether this source locator is configured to search for all source elements that correspond to a stack frame, or the first match.- Parameters:
findAll
- whether this source locator should search for all source elements that correspond to a stack frame- Since:
- 2.1
-
org.eclipse.debug.core.sourcelookup
andorg.eclipse.debug.core.sourcelookup.containers
. This class has been replaced by a Java source lookup director and Java source lookup participant. To migrate to the new source lookup support clients should add two new attributes to their launch configuration type extensions:ATTR_SOURCE_PATH_PROVIDER
attribute (if present), or a default source lookup path based on a configuration's runtime classpath. This class has been replaced by the Java source lookup director which is an internal class, but can be used via thesourceLocatorId
attribute on a launch configuration type extension.