01: /*******************************************************************************
02: * Copyright (c) 2000, 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package com.sun.jdi;
11:
12: import java.util.List;
13: import java.util.Map;
14:
15: public interface StackFrame extends Mirror, Locatable {
16: public Value getValue(LocalVariable arg1);
17:
18: public Map getValues(List arg1);
19:
20: public Location location();
21:
22: public void setValue(LocalVariable arg1, Value arg2)
23: throws InvalidTypeException, ClassNotLoadedException;
24:
25: public ObjectReference this Object();
26:
27: public ThreadReference thread();
28:
29: public LocalVariable visibleVariableByName(String arg1)
30: throws AbsentInformationException;
31:
32: public List visibleVariables() throws AbsentInformationException;
33:
34: public List getArgumentValues();
35: }
|