blob: 3d69bf781fbf34a1e32d03659a3ea4730cca3f59 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-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;
}