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/IChildrenUpdate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IChildrenUpdate.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IChildrenUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IChildrenUpdate.java
index 9ee12df28..188dad545 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IChildrenUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IChildrenUpdate.java
@@ -14,7 +14,7 @@ package org.eclipse.debug.internal.ui.viewers.model.provisional;
/**
* Context sensitive children update request for a parent and subrange of its
* children.
- *
+ *
* @noimplement This interface is not intended to be implemented by clients.
* @since 3.3
*/
@@ -23,23 +23,23 @@ public interface IChildrenUpdate extends IViewerUpdate {
/**
* Returns the offset at which children have been requested for. This is
* the index of the first child being requested.
- *
+ *
* @return offset at which children have been requested for
*/
public int getOffset();
-
+
/**
* Returns the number of children requested.
- *
+ *
* @return number of children requested
*/
public int getLength();
-
+
/**
* Sets the child for this request's parent at the given offset.
- *
+ *
* @param child child
* @param offset child offset
*/
- public void setChild(Object child, int offset);
+ public void setChild(Object child, int offset);
}

Back to the top