Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java
index 48c8b1690..93176c3c7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider2.java
@@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * Patrick Chuong (Texas Instruments) - Allow multiple debug views and
+ * Patrick Chuong (Texas Instruments) - Allow multiple debug views and
* multiple debug context providers (Bug 327263)
*****************************************************************/
package org.eclipse.debug.ui.contexts;
@@ -16,26 +16,26 @@ import org.eclipse.ui.IWorkbenchWindow;
/**
- * This extension to {@link IDebugContextProvider} allows clients to specify the scope that the context
+ * This extension to {@link IDebugContextProvider} allows clients to specify the scope that the context
* provider will apply to. With {@link IDebugContextProvider2}, a provider indicate if it should be a context
- * provider for the entire {@link IWorkbenchWindow} or only for is given {@link IWorkbenchPart}.
- *
+ * provider for the entire {@link IWorkbenchWindow} or only for is given {@link IWorkbenchPart}.
+ *
* <p>
* This interface is intended to be implemented by clients
* </p>
- *
+ *
* @since 3.7
*/
public interface IDebugContextProvider2 extends IDebugContextProvider {
/**
- * Return whether the provider can be set as an active provider for the
- * window.
+ * Return whether the provider can be set as an active provider for the
+ * window.
* <p>
- * If <code>true</code>, when the provider's part is
+ * If <code>true</code>, when the provider's part is
* activated this provider will become the active debug context provider
* for the whole window. If <code>false</code>, this provider will
* only set the active context in a given workbench part.
- *
+ *
* @return <code>true</code> if this provider can act as the provider for the entire window, <code>false</code> if it can
* only be the provider for its given part.
* provider for a window.

Back to the top