Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
index ddad3eba0..a639cd75b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
@@ -25,27 +25,27 @@ import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationCont
*/
public interface IAsynchronousContentAdapter {
- /**
- * Asynchronously retrieves the children of the given parent reporting to the
- * given monitor. If unable to retrieve children, an exception should be reported
- * to the monitor with an appropriate status.
- *
- * @param parent the element to retrieve children for
- * @param context the context in which children have been requested
- * @param monitor request monitor to report children to
- */
- void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
+ /**
+ * Asynchronously retrieves the children of the given parent reporting to the
+ * given monitor. If unable to retrieve children, an exception should be reported
+ * to the monitor with an appropriate status.
+ *
+ * @param parent the element to retrieve children for
+ * @param context the context in which children have been requested
+ * @param monitor request monitor to report children to
+ */
+ void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
- /**
- * Asynchronously determines whether the given element contains children in the specified
- * context reporting the result to the given monitor. If unable to determine
- * whether the element has children, an exception should be reported to the monitor
- * with an appropriate status.
- *
- * @param element the element on which children may exist
- * @param context the context in which children may exist
- * @param monitor request monitor to report the result to
- */
- void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
+ /**
+ * Asynchronously determines whether the given element contains children in the specified
+ * context reporting the result to the given monitor. If unable to determine
+ * whether the element has children, an exception should be reported to the monitor
+ * with an appropriate status.
+ *
+ * @param element the element on which children may exist
+ * @param context the context in which children may exist
+ * @param monitor request monitor to report the result to
+ */
+ void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
}

Back to the top