blob: 0fd5d2733eceddeedac3ed1cc0c24b0e53412dd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi;
import java.util.List;
import java.util.Map;
public interface StackFrame extends Mirror , Locatable {
public Value getValue(LocalVariable arg1);
public Map getValues(List arg1);
public Location location();
public void setValue(LocalVariable arg1, Value arg2) throws InvalidTypeException, ClassNotLoadedException;
public ObjectReference thisObject();
public ThreadReference thread();
public LocalVariable visibleVariableByName(String arg1) throws AbsentInformationException;
public List visibleVariables() throws AbsentInformationException;
public List getArgumentValues();
}