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.java30
1 files changed, 15 insertions, 15 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 7abbc387b..b22b31fed 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
@@ -51,25 +51,25 @@ public interface IDebugContextProvider {
*/
IWorkbenchPart getPart();
- /**
- * Registers the given listener for debug context events.
- *
- * @param listener event listener
- */
+ /**
+ * Registers the given listener for debug context events.
+ *
+ * @param listener event listener
+ */
void addDebugContextListener(IDebugContextListener listener);
- /**
- * Unregisters the given listener for debug context events.
- *
- * @param listener event listener
- */
+ /**
+ * Unregisters the given listener for debug context events.
+ *
+ * @param listener event listener
+ */
void removeDebugContextListener(IDebugContextListener listener);
- /**
- * Returns the currently active context, possibly empty or <code>null</code>.
- *
- * @return active context, possibly empty or <code>null</code>.
- */
+ /**
+ * Returns the currently active context, possibly empty or <code>null</code>.
+ *
+ * @return active context, possibly empty or <code>null</code>.
+ */
ISelection getActiveContext();
}

Back to the top