diff options
author | Pawel Piech | 2009-01-16 23:44:55 +0000 |
---|---|---|
committer | Pawel Piech | 2009-01-16 23:44:55 +0000 |
commit | 710d2b7f0e09ad78957386e02787908caea8a72f (patch) | |
tree | b91ec78ff174dc0714704347467062213c191f38 /org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters | |
parent | 9cb32841fe223aeb0c43404f71bbb8eabfaa7d52 (diff) | |
download | eclipse.platform.debug-710d2b7f0e09ad78957386e02787908caea8a72f.tar.gz eclipse.platform.debug-710d2b7f0e09ad78957386e02787908caea8a72f.tar.xz eclipse.platform.debug-710d2b7f0e09ad78957386e02787908caea8a72f.zip |
Bug 261400 - Port the PDA example debugger's virtual machine from Perl to Java
Diffstat (limited to 'org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters')
-rw-r--r-- | org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters/PDADebugTargetContentProvider.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters/PDADebugTargetContentProvider.java b/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters/PDADebugTargetContentProvider.java index ab33ae4f2..ed0c069ee 100644 --- a/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters/PDADebugTargetContentProvider.java +++ b/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/adapters/PDADebugTargetContentProvider.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005, 2007 IBM Corporation and others. + * Copyright (c) 2005, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * Pawel Piech (Wind River) - ported PDA Virtual Machine to Java (Bug 261400) *******************************************************************************/ package org.eclipse.debug.examples.ui.pda.adapters; @@ -27,7 +28,7 @@ public class PDADebugTargetContentProvider extends ElementContentProvider { * @see org.eclipse.debug.internal.ui.model.elements.ElementContentProvider#getChildCount(java.lang.Object, org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext, org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate) */ protected int getChildCount(Object element, IPresentationContext context, IViewerUpdate monitor) throws CoreException { - PDAThread thread = ((PDADebugTarget) element).getThread(); + PDAThread thread = ((PDADebugTarget) element).getThread(0); if (thread != null) { if (thread.hasStackFrames()) { return thread.getStackFrames().length; @@ -40,7 +41,7 @@ public class PDADebugTargetContentProvider extends ElementContentProvider { * @see org.eclipse.debug.internal.ui.model.elements.ElementContentProvider#hasChildren(java.lang.Object, org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext, org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate) */ protected boolean hasChildren(Object element, IPresentationContext context, IViewerUpdate monitor) throws CoreException { - PDAThread thread = ((PDADebugTarget) element).getThread(); + PDAThread thread = ((PDADebugTarget) element).getThread(0); if (thread != null) { return thread.hasStackFrames(); } @@ -52,7 +53,7 @@ public class PDADebugTargetContentProvider extends ElementContentProvider { */ protected Object[] getChildren(Object parent, int index, int length, IPresentationContext context, IViewerUpdate monitor) throws CoreException { if (context.getId().equals(IDebugUIConstants.ID_DEBUG_VIEW)) { - PDAThread thread = ((PDADebugTarget) parent).getThread(); + PDAThread thread = ((PDADebugTarget) parent).getThread(0); if (thread != null) { return getElements(thread.getStackFrames(), index, length); } |