Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java
index 1ac26036e..9ac314eb3 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerInputRequestor.java
@@ -11,20 +11,20 @@
package org.eclipse.debug.internal.ui.viewers.model.provisional;
/**
- * Clients using a {@link ViewerInputService} implement this interface to be notified of
+ * Clients using a {@link ViewerInputService} implement this interface to be notified of
* the computed viewer input.
* <p>
* Clients may implement this interface.
* </p>
* @see ViewerInputService
- * @since 3.4
+ * @since 3.4
*/
public interface IViewerInputRequestor {
/**
* Notification that a viewer input update request is complete. The given update
* contains the result of the request, which may have been canceled.
- *
+ *
* @param update viewer input update request
*/
public void viewerInputComplete(IViewerInputUpdate update);

Back to the top