Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2007-04-22 19:36:57 +0000
committerDarin Wright2007-04-22 19:36:57 +0000
commit8278361380e27143b2b9af3a7d51a7588ed02583 (patch)
tree503d779dc195c5a54d2a15486d867f23c9d760b3 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
parent31f879c54326a76928453202e464e35a728965e6 (diff)
downloadeclipse.platform.debug-8278361380e27143b2b9af3a7d51a7588ed02583.tar.gz
eclipse.platform.debug-8278361380e27143b2b9af3a7d51a7588ed02583.tar.xz
eclipse.platform.debug-8278361380e27143b2b9af3a7d51a7588ed02583.zip
Bug 182008 blank threads in debug view
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
index 6721ea211..7205e1ddf 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
@@ -167,5 +167,15 @@ public class ChildrenUpdate extends ViewerUpdateMonitor implements IChildrenUpda
TreePath getSchedulingPath() {
return getElementPath();
}
+
+ /**
+ * Sets this request's offset. Used when modifying a waiting request when
+ * the offset changes due to a removed element.
+ *
+ * @param offset new offset
+ */
+ void setOffset(int offset) {
+ fIndex = offset;
+ }
}

Back to the top