Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java
index f8a22f6db..579569f00 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/IDebugContextProvider.java
@@ -15,7 +15,7 @@ import org.eclipse.ui.IWorkbenchPart;
/**
* Interface common to all objects that provide a debug context. A context provider
- * is registered with a debug context service associated with a specific window.
+ * is registered with a debug context service associated with a specific window.
* <p>
* A context provider can provide context information for a specific workbench part.
* There can only be one context provider registered per part with a context
@@ -26,9 +26,9 @@ import org.eclipse.ui.IWorkbenchPart;
* A context provider does not have to be associated with a part. In this case the provider
* specifies <code>null</code> for its part, and provides context information for the window.
* There can only be one context provider without an associated part registered per context
- * service (i.e. per window). A context provider that provides context without an associated
+ * service (i.e. per window). A context provider that provides context without an associated
* part is only active (i.e. used to provide context information) when there are no other
- * context providers with associated parts registered with that service.
+ * context providers with associated parts registered with that service.
* </p>
* <p>
* Clients may implement this interface.
@@ -39,32 +39,32 @@ import org.eclipse.ui.IWorkbenchPart;
* @since 3.3
*/
public interface IDebugContextProvider {
-
+
/**
* Returns the part associated with this context provider or <code>null</code>
* if none.
- *
+ *
* @return part associated with this context provider or <code>null</code>
*/
public IWorkbenchPart getPart();
-
+
/**
* Registers the given listener for debug context events.
- *
+ *
* @param listener event listener
*/
public void addDebugContextListener(IDebugContextListener listener);
-
+
/**
* Unregisters the given listener for debug context events.
- *
+ *
* @param listener event listener
*/
public void removeDebugContextListener(IDebugContextListener listener);
-
+
/**
* Returns the currently active context, possibly empty or <code>null</code>.
- *
+ *
* @return active context, possibly empty or <code>null</code>.
*/
public ISelection getActiveContext();

Back to the top