Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java
index 1cc942d6a..82272286e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceDisplay.java
@@ -22,8 +22,8 @@ import org.eclipse.ui.IWorkbenchPage;
* The debug platform provides a source display adapter for instances
* of <code>IStackFrame</code>. The standard adapter uses the source locator associated
* with the stack frame's launch to lookup source. Clients may provide their own
- * source display adapters as required.
- * </p>
+ * source display adapters as required.
+ * </p>
* <p>
* Clients may implement this interface.
* </p>
@@ -31,15 +31,15 @@ import org.eclipse.ui.IWorkbenchPage;
* @since 3.3
*/
public interface ISourceDisplay {
-
+
/**
* Displays source for the given element in the specified page.
- *
+ *
* @param element debug model element to display source for
* @param page the page in which to display source
* @param forceSourceLookup whether source lookup should be performed,
* ignoring any previously cached results for the same element
*/
public void displaySource(Object element, IWorkbenchPage page, boolean forceSourceLookup);
-
+
}

Back to the top