1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 42 public interface IVariable extends IDebugElement, IValueModification { 43 52 public IValue getValue() throws DebugException; 53 63 public String getName() throws DebugException; 64 76 public String getReferenceTypeName() throws DebugException; 77 78 92 public boolean hasValueChanged() throws DebugException; 93 94 95 } 96 | Popular Tags |