1 11 package com.sun.jdi; 12 13 14 import java.util.List ; 15 import java.util.Map ; 16 17 public interface StackFrame extends Mirror , Locatable { 18 public Value getValue(LocalVariable arg1); 19 public Map getValues(List 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 arg1) throws AbsentInformationException; 25 public List visibleVariables() throws AbsentInformationException; 26 public List getArgumentValues(); 27 } 28 | Popular Tags |