Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5e2f34c03d4085a315d676668f9eed23c94152b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2008, 2009 Wind River Systems 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
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.examples.core.pda.protocol;


/**
 * Return the contents of variable <code>variable_name</code> in the control 
 * stack frame <code>frame_number</code> (stack frames are indexed from 0, 0 
 * being the oldest). 
 * 
 * <pre>
 *    C: var  {thread_id} {frame_number} {variable_name}
 *    R: {variable_value}
 *    
 * Errors:
 *    error: invalid thread
 *    error: variable undefined
 * </pre>
 */

public class PDAVarCommand extends PDACommand {

    public PDAVarCommand(int threadId, int frameId, String name) {
        super("var " + threadId + " " + frameId + " " + name);
    }
    

    public PDACommandResult createResult(String resultText) {
        return new PDACommandResult(resultText);
    }
}

Back to the top