Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java
index 02477bf82..95762d321 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/ISuspendTrigger.java
@@ -20,17 +20,17 @@ package org.eclipse.debug.ui.contexts;
* preferences. The debug platform asks each registered launch for its suspend
* trigger adapter or registers with the launch itself if it implements
* <code>ISuspendTrigger</code>.
- * </p>
+ * </p>
* <p>
* It is important that the same instance of a suspend trigger adapter is
* returned each time it is asked for the same object, such that listeners
* can be added and removed from the same instance. When a listener is removed
* and no more listeners are registered, this trigger can be disposed or replaced
- * with a new adapter the next time one is requested.
+ * with a new adapter the next time one is requested.
* </p>
* <p>
* Clients may implement this interface. The debug platform provides a suspend trigger
- * adapter for implementations of <code>ILaunch</code>. The implementation provided by
+ * adapter for implementations of <code>ILaunch</code>. The implementation provided by
* the platform is based on a standard debug model that fires debug events. Clients
* wishing to provide their own implementation must also provide their own implementation
* of <code>ILaunch</code> (or subclass of <code>Launch</code>), in order to register
@@ -40,19 +40,19 @@ package org.eclipse.debug.ui.contexts;
* @since 3.3
*/
public interface ISuspendTrigger {
-
+
/**
* Registers the given listener for suspend notifications.
- *
+ *
* @param listener suspend listener
*/
public void addSuspendTriggerListener(ISuspendTriggerListener listener);
-
+
/**
* Unregisters the given listener for suspend notifications.
- *
+ *
* @param listener suspend listener
*/
public void removeSuspendTriggerListener(ISuspendTriggerListener listener);
-
+
}

Back to the top