KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jdi > StackFrame


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package com.sun.jdi;
12
13
14 import java.util.List JavaDoc;
15 import java.util.Map JavaDoc;
16
17 public interface StackFrame extends Mirror , Locatable {
18     public Value getValue(LocalVariable arg1);
19     public Map JavaDoc getValues(List JavaDoc arg1);
20     public Location location();
21     public void setValue(LocalVariable arg1, Value arg2) throws InvalidTypeException, ClassNotLoadedException;
22     public ObjectReference thisObject();
23     public ThreadReference thread();
24     public LocalVariable visibleVariableByName(String JavaDoc arg1) throws AbsentInformationException;
25     public List JavaDoc visibleVariables() throws AbsentInformationException;
26     public List JavaDoc getArgumentValues();
27 }
28
Popular Tags