1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 38 39 40 public interface IValue extends IDebugElement { 41 42 52 public String getReferenceTypeName() throws DebugException; 53 54 63 public String getValueString() throws DebugException; 64 65 77 public boolean isAllocated() throws DebugException; 78 90 public IVariable[] getVariables() throws DebugException; 91 92 103 public boolean hasVariables() throws DebugException; 104 } 105 | Popular Tags |